zshrc: update aliases
This commit is contained in:
parent
16712a00e3
commit
a5e752f342
3
zshrc
3
zshrc
|
@ -66,6 +66,7 @@ alias dc="docker-compose -f docker-compose.yml"
|
||||||
alias dcd="docker-compose -f docker-compose.yml -f docker-compose.development.yml"
|
alias dcd="docker-compose -f docker-compose.yml -f docker-compose.development.yml"
|
||||||
alias gb="go build"
|
alias gb="go build"
|
||||||
alias gba="go build ./..."
|
alias gba="go build ./..."
|
||||||
|
alias gbat="go build ./... && go test ./..."
|
||||||
alias gc="git commit"
|
alias gc="git commit"
|
||||||
alias gd="git diff"
|
alias gd="git diff"
|
||||||
alias gg="go get"
|
alias gg="go get"
|
||||||
|
@ -85,6 +86,8 @@ alias sc="systemctl"
|
||||||
alias sk="setkeys"
|
alias sk="setkeys"
|
||||||
alias ssc="sudo systemctl"
|
alias ssc="sudo systemctl"
|
||||||
alias sysc="systemctl"
|
alias sysc="systemctl"
|
||||||
|
alias rggo="rg -g '*\.go' -g '!vendor/'"
|
||||||
|
alias rggt="rg -g '*\_test.go' -g '!vendor/'"
|
||||||
alias tm="tmux attach"
|
alias tm="tmux attach"
|
||||||
alias tmd="tmux new -s default -c $HOME || tmux attach -t default"
|
alias tmd="tmux new -s default -c $HOME || tmux attach -t default"
|
||||||
alias tmls="tmux list-sessions"
|
alias tmls="tmux list-sessions"
|
||||||
|
|
Loading…
Reference in New Issue