Skip to content

Instantly share code, notes, and snippets.

@hovsater
Created May 15, 2013 08:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hovsater/5582420 to your computer and use it in GitHub Desktop.
Save hovsater/5582420 to your computer and use it in GitHub Desktop.
Update Vim plugins if using https://github.com/tpope/vim-pathogen
#!/bin/sh
VIM_BUNDLE_DIRECTORY=$HOME/.vim/bundle
for dir in $(find $VIM_BUNDLE_DIRECTORY -mindepth 1 -maxdepth 1 -type d); do
cd $dir && echo "Updating $(basename $PWD)..." && git pull
done
@hovsater
Copy link
Author

I made this into a little shell script. https://github.com/KevinSjoberg/vpm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment