This commit is contained in:
2026-01-28 06:08:32 +02:00
parent 5972c3c5df
commit 74e779ff54
6 changed files with 16 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
/home/tomas/bin/dev "$@" 2>&1 /home/tomas/bin/flow "$@" 2>&1
exit_code=$? exit_code=$?
if [ $exit_code -ne 0 ]; then if [ $exit_code -ne 0 ]; then

View File

@@ -97,6 +97,7 @@ DEFAULT_REGISTRY="registry.tomastm.com"
DEFAULT_TAG="latest" DEFAULT_TAG="latest"
PROJECT_DIR="$HOME/projects" PROJECT_DIR="$HOME/projects"
PROJECT_ABBR="p" PROJECT_ABBR="p"
CONTAINER_HOME="/home/dev"
fail() { fail() {
printf 'Error: %b\n' "$*" >&2 printf 'Error: %b\n' "$*" >&2

View File

@@ -14,6 +14,13 @@
[remote] [remote]
pushDefault = origin pushDefault = origin
[alias] [alias]
amend = commit -a --amend --no-edit amend = commit --amend --no-edit
rename = branch -m rename = branch -m
st = status
lg = log --oneline --graph --decorate --all
lga = log --oneline --graph --decorate --all --author=you
unstage = reset HEAD
last = log -1 HEAD
tags = tag -l
undo = reset --mixed HEAD~1

View File

@@ -63,6 +63,6 @@ bind r source-file ~/.tmux.conf \; display "Reloaded!"
unbind d unbind d
bind e detach bind e detach
bind d command-prompt -I "dev " 'run-shell "/home/tomas/bin/dev-tmux-wrapper.sh %1 --from #{session_name}"' bind d command-prompt -I "flow " 'run-shell "/home/tomas/bin/dev-tmux-wrapper.sh %1 --from #{session_name}"'

View File

@@ -49,3 +49,7 @@ alias ll='ls -lF'
alias lla='ll -a' alias lla='ll -a'
alias ld='ls -ld */' alias ld='ls -ld */'
alias ga='git add'
alias gcm='git commit -m'
alias gp='git push'
alias gst='git status'