1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-24 18:52:22 +08:00
SpaceVim/ftplugin/SpaceVimPlugManager.vim
2017-04-22 10:47:54 +08:00

13 lines
486 B
VimL

function! MyPlugin(...)
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
call airline#add_statusline_func('MyPlugin')