From 5b4e8e01de70584c459b46926c841b07852d51d7 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Wed, 17 Feb 2021 04:54:16 +0100 Subject: [PATCH] Update zshrc --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index f6247ef..371e1a8 100644 --- a/zshrc +++ b/zshrc @@ -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"