Previously, the after-up hook would only do a `:BundleInstall` when installing vundle for the first time. This is inconsistent with the pre-rcm process, and also less convenient.
6 lines
178 B
Bash
Executable file
6 lines
178 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -e $HOME/.vim/bundle/vundle ]; then
|
|
git clone https://github.com/gmarik/vundle.git $HOME/.vim/bundle/vundle
|
|
fi
|
|
vim -u $HOME/.vimrc.bundles +BundleInstall +qa
|