[vim]Use vundle for plugin management

This commit is contained in:
Mathieu Maret 2014-04-07 16:29:15 +02:00 committed by Mathieu Maret
parent 7d103879b0
commit 307581652a
2 changed files with 18 additions and 1712 deletions

File diff suppressed because it is too large Load Diff

18
.vimrc
View File

@ -412,3 +412,21 @@ let g:Tex_DefaultTargetFormat="pdf"
colorscheme mycolor
cnoremap sudow w !sudo tee % >/dev/null
"""""""""
" Plugin"
"""""""""
"Using vundle
"cf. https://github.com/gmarik/Vundle.vim
":PluginInstall to install them
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle, required
Plugin 'gmarik/vundle'
" plugin from github
Plugin 'airblade/vim-gitgutter'
Plugin 'tpope/vim-fugitive'