I've installed bling/vim-airline hoping I could have that cool branch name in my status bar.
I followed the instructions on airline's repo and installed tpope/vim-fugitive. But after downloading, installing, modifying and restarting vim, I just couldn't get the branch on the status bar. Instead I've got this:
I'm suspecting something was wrong with my .vimrc
file?
Here is the part related to airline:
set ttimeoutlen=50
let g:airline_theme = 'powerlineish'
let g:airline#extensions#hunks#enabled=0
let g:airline#extensions#branch#enabled=1
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
let g:airline_symbols.space = "\ua0"
P.S. I'm new to vim, any advice will be greatly appreciated, thanks!