diff options
author | U-SYNOPSYS\jstolp <jstolp@jstolp-7490.internal.synopsys.com> | 2019-04-26 20:50:33 +0200 |
---|---|---|
committer | U-SYNOPSYS\jstolp <jstolp@jstolp-7490.internal.synopsys.com> | 2019-04-26 20:50:33 +0200 |
commit | 973de4fa7527c13f757b526a05920d4d0793e834 (patch) | |
tree | 3d81a9d982f05d5d4e550a3686a029ee33530891 | |
parent | 217fe958e753ff7984212a57d4b4d64cbed91bca (diff) | |
download | dotfiles-973de4fa7527c13f757b526a05920d4d0793e834.tar.gz dotfiles-973de4fa7527c13f757b526a05920d4d0793e834.zip |
fixed viminstaller to close after plugin install
-rwxr-xr-x | install | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |