1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 06:40:06 +08:00
SpaceVim/autoload/SpaceVim/layers.vim
2017-02-17 00:56:55 -05:00

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