diff options
author | Blubber <f2005278@mvrht.com> | 2016-10-23 16:11:12 +0200 |
---|---|---|
committer | Blubber <f2005278@mvrht.com> | 2016-10-23 16:11:12 +0200 |
commit | 5430828f3126c495ff75e702c8475a0671ba8091 (patch) | |
tree | 80c5fafd6ec0ccf44b1ceb708bbfd261aaa4a931 /.vim/install_vundle.sh | |
parent | 0aaeb464ba5a55423338aa73b8c7a8c68d393331 (diff) | |
download | dotfiles-5430828f3126c495ff75e702c8475a0671ba8091.tar.gz dotfiles-5430828f3126c495ff75e702c8475a0671ba8091.zip |
cleaned up and refactored vim settings
Diffstat (limited to '.vim/install_vundle.sh')
-rwxr-xr-x | .vim/install_vundle.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/.vim/install_vundle.sh b/.vim/install_vundle.sh deleted file mode 100755 index 287431f..0000000 --- a/.vim/install_vundle.sh +++ /dev/null @@ -1,15 +0,0 @@ -# dotfiles -- .vim/install_vundle.sh -# author: johannst - -# 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 |