Reputation: 399
I have this in my config file:
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'helino/vim-nasm'
Plugin 'elixir-lang/vim-elixir'
Plugin 'powerline/powerline'
call vundle#end()
And then I did this:
:source %
:PluginInstall
But the plugin powerline is still not installed, it's not visible.
https://github.com/powerline/powerline
Upvotes: 1
Views: 788
Reputation: 430
Powerline only display when plugin like NERDtree is active. If you want to display it every time add this line to your .vimrc
file.
set laststatus=2
Upvotes: 1