1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 03:50:05 +08:00
SpaceVim/autoload/SpaceVim/layers.vim

13 lines
329 B
VimL
Raw Normal View History

2017-01-18 20:52:19 +08:00
""
" @section Layers, layers
" SpaceVim support such layers:
""
" Load the {layer} you want. For all the layers SpaceVim supports, see @section(layers).
2017-01-18 20:52:19 +08:00
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