Reputation: 57
I have some plugins already installed in VIM. They are working find. Recently I was trying to install Flake8 in my VIM through Vundle. When I type :BundleInstall andviro/flake8
it downloads well and installs the plugin. In addition I am able to see it by :BundleList
. But when I restart the VIM it is not there. I tried to install other plugins also but when I restart the VIM lastly installed plugins are removed.
Upvotes: 0
Views: 205
Reputation: 4874
add the plugin to your .vimrc
.
As it says vundle github page you want something like:
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Bundle 'gmarik/Vundle.vim'
Bundle 'andviro/flake8-vim'
call vundle#end()
typing just :BundleInstall
will grab all of your addons listed in your .vimrc
and make sure they're installed and updated.
Upvotes: 1