blob: 4e7092e7f6ba9f77d825865111fc44560681fa63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()
|