diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-25 16:54:01 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-25 16:54:01 +0200 |
commit | ec07950da8ff7a6fb9acccc6bf8f89727e3b4416 (patch) | |
tree | 9bc2879feb7b2c86b48eb611f1cc87195c3e47ae | |
parent | 9d7a7118a55f7f5261dfecd45ad4591369ea5b6a (diff) | |
download | bin-ec07950da8ff7a6fb9acccc6bf8f89727e3b4416.zip bin-ec07950da8ff7a6fb9acccc6bf8f89727e3b4416.tar.gz |
add update-vim-plugins
-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 |