add colorized support for selected buffers with bufferline

This commit is contained in:
Bailey Ling 2013-07-20 22:31:05 -04:00
parent 8a2890625b
commit ee90b7c6b3
1 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,14 @@ function! airline#extensions#load()
\ }
endif
if g:airline_enable_bufferline
let g:bufferline_inactive_highlight = 'Al6'
let g:bufferline_active_highlight = 'Al2'
let g:bufferline_active_buffer_left = ''
let g:bufferline_active_buffer_right = ''
let g:bufferline_separator = ' '
endif
call add(g:airline_window_override_funcrefs, function('airline#extensions#apply_window_overrides'))
endfunction