Update zshrc

This commit is contained in:
Rob Watson 2021-02-17 04:54:16 +01:00
parent ebd3724b68
commit 5b4e8e01de
1 changed files with 1 additions and 1 deletions

2
zshrc
View File

@ -133,7 +133,7 @@ alias dc="docker-compose -f docker-compose.yml"
alias dcd="docker-compose -f docker-compose.yml -f docker-compose.development.yml"
alias clp="tmux kill-pane"
alias clw="tmux kill-window"
alias updatevimplugins="cd $HOME/.vim/pack/git-plugins && find -maxdepth 2 -type d | xargs -I{} bash -c 'cd {} ; git pull --rebase' ; cd -"
alias updatevimplugins="cd $HOME/.vim/pack/git-plugins && find . -mindepth 2 -maxdepth 2 -type d | xargs -I{} bash -c 'cd {} ; printf \"In {}...\"; git pull --rebase' ; cd -"
# recursive grep with line numbers and colour, ignoring binary files:
alias gnr="grep -nR -I --color"