diff options
Diffstat (limited to '.vim/vimrc_files/vundle.vim')
-rw-r--r-- | .vim/vimrc_files/vundle.vim | 18 |
1 files changed, 18 insertions, 0 deletions
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() |