summaryrefslogtreecommitdiff
path: root/.vim/install_vundle.sh
blob: f5caef2f7ffe6e75921138e771de4376f89f0419 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# dotfiles -- .vim/install_vundle.sh
# author: johannst
# vundle: https://github.com/VundleVim/Vundle.vim

# if INSTALL_DIR changed, it must be also changed in .vim/vimrc_files/vundle.vim
INSTALL_DIR=~/.vim/bundle

if [ ! -d $INSTALL_DIR ]; then 
    mkdir $INSTALL_DIR
fi
if [ ! -d $INSTALL_DIR/Vundle.vim ]; then 
    git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
fi

# install plugins
vim +PluginInstall +qall