2013-08-11 19:20:41 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
2013-08-21 15:14:12 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-06 00:29:30 +00:00
|
|
|
|
2013-08-06 02:44:34 +00:00
|
|
|
function! airline#extensions#bufferline#init(ext)
|
2013-08-24 05:06:04 +00: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 00:29:30 +00:00
|
|
|
let g:bufferline_active_buffer_left = ''
|
|
|
|
let g:bufferline_active_buffer_right = ''
|
|
|
|
let g:bufferline_separator = ' '
|
2013-08-06 02:44:34 +00:00
|
|
|
|
2013-08-27 23:24:01 +00:00
|
|
|
let g:airline_parts.file = '%{bufferline#refresh_status()}'.bufferline#get_status_string()
|
2013-08-06 00:29:30 +00:00
|
|
|
endfunction
|