2013-08-12 03:20:41 +08:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
2013-08-21 23:14:12 +08:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-06 08:29:30 +08:00
|
|
|
|
2013-08-06 10:44:34 +08:00
|
|
|
function! airline#extensions#bufferline#init(ext)
|
2013-08-24 13:06:04 +08:00
|
|
|
highlight bufferline_selected gui=bold cterm=bold term=bold
|
|
|
|
highlight link bufferline_selected_inactive airline_c_inactive
|
|
|
|
let g:bufferline_inactive_highlight = 'airline_c'
|
|
|
|
let g:bufferline_active_highlight = 'bufferline_selected'
|
2013-08-06 08:29:30 +08:00
|
|
|
let g:bufferline_active_buffer_left = ''
|
|
|
|
let g:bufferline_active_buffer_right = ''
|
|
|
|
let g:bufferline_separator = ' '
|
2013-08-06 10:44:34 +08:00
|
|
|
|
2013-08-06 12:35:07 +08:00
|
|
|
if g:airline_section_c == '%f%m'
|
2013-08-24 12:32:44 +08:00
|
|
|
let g:airline_section_c = '%{bufferline#refresh_status()}'.bufferline#get_status_string()
|
2013-08-06 12:35:07 +08:00
|
|
|
endif
|
2013-08-06 08:29:30 +08:00
|
|
|
endfunction
|