vimvim-pluginvim-airline

Vim Airline plugin dont work properly on Vim


I am trying to configure vim-airline with my vim editor. (I am using RHEL 7.1) I installed the proper fonts from powerline/fonts documentation. then I clone the airline on my .vim/bundle/ directory.(I am using pathogen). and then I customize my .vimrc file as follow:

" air-line
let g:airline_powerline_fonts = 1
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
" unicode symbols 
let g:airline_left_sep = '»'
let g:airline_left_sep = '▶'
let g:airline_right_sep = '«'
let g:airline_right_sep = '◀'
let g:airline_symbols.linenr = '␊'
let g:airline_symbols.branch = '⎇'
let g:airline_symbols.paste = 'ρ'
let g:airline_symbols.paste = 'Þ'
let g:airline_symbols.paste = '∥'
let g:airline_symbols.whitespace = 'Ξ'

" airline symbols 
let g:airline_left_alt_sep = ''
let g:airline_right_alt_sep = ''
let g:airline_symbols.readonly = ''

However my vim is still messed up Barline Full image

I looked at lots of Stackoverflow and other website about this issue and I tried all of their solutions but no luck.

Any help or suggestion?

This is what I see just with airline and fugitive vim plugin enter image description here


Solution

  • Well After following @iltempo, recommendation, the evil plugin was end-wise. I created an issue on their Github account.