Skip to content

Instantly share code, notes, and snippets.

@djkotowski
Created September 20, 2022 17:55
Show Gist options
  • Save djkotowski/a9275e4c1d07c852bd77e8f3565f15c4 to your computer and use it in GitHub Desktop.
Save djkotowski/a9275e4c1d07c852bd77e8f3565f15c4 to your computer and use it in GitHub Desktop.
Update all vim plugins
#!/bin/bash
cd $HOME/.vim/bundle
for dir in */; do
cd $dir
printf "\e[1;33mUpdating ${dir%/}...\e[m"
git pull -q
printf " \e[1;33mDone.\e[m\n"
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment