diff options
-rwxr-xr-x | update-vim-plugins | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/update-vim-plugins b/update-vim-plugins new file mode 100755 index 0000000..2d2d608 --- /dev/null +++ b/update-vim-plugins @@ -0,0 +1,6 @@ +#! /bin/bash + +curl -so ~/.vim/autoload/pathogen.vim https://raw.github.com/tpope/vim-pathogen/HEAD/autoload/pathogen.vim +for f in $HOME/.vim/bundle/*; do + echo -en " ${f##*/}\n " && cd $f && git pull +done |