From 1d5ccc10db1a8309a8faae2ac6b515fcd791904d Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sun, 17 Apr 2016 21:52:35 +0200 Subject: [PATCH] Install vundle --- unixconf.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/unixconf.sh b/unixconf.sh index 9e3878f..63c687e 100755 --- a/unixconf.sh +++ b/unixconf.sh @@ -36,4 +36,8 @@ cp .* "$HOME/" if (! test -d "$HOME/.vim" ); then mkdir "$HOME/.vim" fi +if (! test -d "$HOME/.vim/bundle" ); then + mkdir "$HOME/.vim/bundle" +fi +git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim vim +PluginInstall +qall