1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-23 01:09:56 +08:00
2017-01-18 20:52:26 +08:00

13 lines
330 B
VimL

""
" @section Layers, layers
" SpaceVim support such layers:
""
" Load the {layer} you want, for all the layers SpaceVim supported, see @section(layers).
function! SpaceVim#layers#load(layer) abort
if index(g:spacevim_plugin_groups, a:layer) == -1
call add(g:spacevim_plugin_groups, a:layer)
endif
endfunction