From 72706eb9323065cdb4152d73926fd680a4c5a9ab Mon Sep 17 00:00:00 2001 From: Johannes Stolp Date: Fri, 1 Jul 2016 17:41:55 +0200 Subject: Removed current plugin handling, added script to install vundle(a vim plugin manager). Adapted vim config files to use vundle. To install new vim plugins, they must be added to .vim/vimrc_files/vundle.vim --- .vim/vimrc_files/vundle.vim | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vim/vimrc_files/vundle.vim (limited to '.vim/vimrc_files/vundle.vim') diff --git a/.vim/vimrc_files/vundle.vim b/.vim/vimrc_files/vundle.vim new file mode 100644 index 0000000..4e7092e --- /dev/null +++ b/.vim/vimrc_files/vundle.vim @@ -0,0 +1,18 @@ +" dotfiles -- .vim/vimrc_files/vundle.vim +" author: johannst + +" to install plugins open vim and run :PluginInstall + +filetype off " necessary for vundle!!! +set rtp+=~/.vim/bundle/Vundle.vim + +call vundle#begin() + +Plugin 'VundleVim/Vundle.vim' +Plugin 'jlanzarotta/bufexplorer' + + +Plugin 'vim-airline/vim-airline' +Plugin 'vim-airline/vim-airline-themes' + +call vundle#end() -- cgit v1.2.3