commit 3d0533181ea2153022993b4cffc8e635311a0527 Author: Mathieu Maret Date: Mon Jul 6 13:45:14 2015 +0200 Use vundle for plugin management diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..7cdc133 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule ".vim/bundle/Vundle.vim"] + path = .vim/bundle/Vundle.vim + url = https://github.com/gmarik/Vundle.vim.git diff --git a/.vim/bundle/Vundle.vim b/.vim/bundle/Vundle.vim new file mode 160000 index 0000000..cfd3b2d --- /dev/null +++ b/.vim/bundle/Vundle.vim @@ -0,0 +1 @@ +Subproject commit cfd3b2d388a8c2e9903d7a9d80a65539aabfe933 diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..1cf4c7d --- /dev/null +++ b/.vimrc @@ -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()