Use vundle for plugin management

This commit is contained in:
Mathieu Maret 2015-07-06 13:45:14 +02:00
commit 3d0533181e
3 changed files with 17 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule ".vim/bundle/Vundle.vim"]
path = .vim/bundle/Vundle.vim
url = https://github.com/gmarik/Vundle.vim.git

@ -0,0 +1 @@
Subproject commit cfd3b2d388a8c2e9903d7a9d80a65539aabfe933

13
.vimrc Normal file
View File

@ -0,0 +1,13 @@
"""""""""
" Plugin"
"""""""""
"Using vundle
"cf. https://github.com/gmarik/Vundle.vim
":PluginInstall to install them
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
call vundle#end()