summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorU-SYNOPSYS\jstolp <jstolp@jstolp-7490.internal.synopsys.com>2019-04-26 20:50:33 +0200
committerU-SYNOPSYS\jstolp <jstolp@jstolp-7490.internal.synopsys.com>2019-04-26 20:50:33 +0200
commit973de4fa7527c13f757b526a05920d4d0793e834 (patch)
tree3d81a9d982f05d5d4e550a3686a029ee33530891
parent217fe958e753ff7984212a57d4b4d64cbed91bca (diff)
downloaddotfiles-973de4fa7527c13f757b526a05920d4d0793e834.tar.gz
dotfiles-973de4fa7527c13f757b526a05920d4d0793e834.zip
fixed viminstaller to close after plugin install
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index 89c75a4..28b1e5f 100755
--- a/install
+++ b/install
@@ -125,7 +125,7 @@ function vimConfigInstaller() {
echo -e '\tsource ~/.vimrc_background' >> $vimrc
echo -e 'endif' >> $vimrc
git clone https://github.com/VundleVim/Vundle.vim.git $vim_home/bundle/Vundle.vim || { echo "Vundle not cloned, using existing!"; }
- vim +PluginInstall +qall
+ vim +PluginUpdate +qall -c "q"
return 0
}