Jodooomi
Jodooomi

Reputation: 399

Unable to install powerline in Vim

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

Answers (1)

Darshit
Darshit

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

Related Questions