mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 06:40:06 +08:00
13 lines
329 B
VimL
13 lines
329 B
VimL
""
|
|
" @section Layers, layers
|
|
" SpaceVim support such layers:
|
|
|
|
|
|
""
|
|
" Load the {layer} you want. For all the layers SpaceVim supports, 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
|