Ubuntu 16.04 installed sudo apt-get install powerline
and added to .bashrc:
# Powerline
if [ -f /usr/share/powerline/bindings/bash/powerline.sh ]; then
source /usr/share/powerline/bindings/bash/powerline.sh
fi
And added in ~/.vimrc
the:
" Powerline
set rtp+=/usr/share/powerline/bindings/vim/
" Always show statusline
set laststatus=2
" Use 256 colours (Use this setting only if your terminal supports 256 colours)
set t_Co=256
let g:Powerline_symbols = "fancy"
when running again eg. vim ~/.vimrc
there is no powerline nice status as here:
https://www.2daygeek.com/wp-content/uploads/2017/06/install-powerline-in-linux-4.png
How can I fix this to get this fancy line in the bottom?