mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 22:20:06 +08:00
21 lines
658 B
VimL
21 lines
658 B
VimL
if exists('g:_SpaceVimPlugManager_ftplugin')
|
|
finish
|
|
else
|
|
let g:_SpaceVimPlugManager_ftplugin = 1
|
|
endif
|
|
function! SpaceVimPlugManager#statusline(...)
|
|
if &ft ==# 'SpaceVimPlugManager'
|
|
call airline#extensions#apply_left_override('SpaceVimPlugins', '')
|
|
" Alternatively, set the various w:airline_section variables
|
|
"let w:airline_section_a = 'SpaceVimPluginManager'
|
|
"let w:airline_section_b = ''
|
|
"let w:airline_section_c = ''
|
|
"let w:airline_render_left = 1
|
|
"let w:airline_render_right = 0
|
|
endif
|
|
endfunction
|
|
try
|
|
call airline#add_statusline_func('SpaceVimPlugManager#statusline')
|
|
catch
|
|
endtry
|