dotfiles/.vim/bundle
2017-07-24 13:38:11 +02:00
..
flake8@91818a7d5f add new vim submodule bundles 2017-07-24 13:38:11 +02:00
jedi-vim@6411de0cd1 add new vim submodule bundles 2017-07-24 13:38:11 +02:00
vim-airline@72e5f04f7c add new vim submodule bundles 2017-07-24 13:38:11 +02:00
vim-fugitive@913fff1cea add new vim submodule bundles 2017-07-24 13:38:11 +02:00
README added note on jedi requirement for jedi-vim 2014-01-21 22:56:04 +01:00

" Based on http://vimcasts.org/episodes/synchronizing-plugins-with-git-submodules-and-pathogen/
"
" Attention: jedi-vim requires 'pip install jedi'

" Add new vim plugin
" ------------------

" cd <dotfiles-git-repo>
" git submodule add http://gitrepo.url/plugin.git .vim/bundle/pluginname
" git add ...
" git commit -m '...'

" Clone the vim config to another machine
" ---------------------------------------
" git clone http://github.com/username/dotvim.git ~/.vim
" cd ~/.vim
" git submodule init
" git submodule update

" Update single plugin
" --------------------
" cd ~/.vim/bundle/pluginname
" git pull origin master

" Upgrade all plugins
" -------------------
" git submodule foreach git pull origin master