1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 22:30:04 +08:00

Added a new layer, japanese

Added a new layer japanese which loads vim-jp/vimdoc-ja.
This commit is contained in:
Seong Yong-ju 2017-10-23 00:25:51 +09:00
parent e30ab0b936
commit f7a2f3e462
2 changed files with 10 additions and 0 deletions

View File

@ -503,6 +503,8 @@ function! SpaceVim#end() abort
endfor
if g:spacevim_vim_help_language ==# 'cn'
call add(g:spacevim_plugin_groups, 'chinese')
elseif g:spacevim_vim_help_language ==# 'japanese'
call add(g:spacevim_plugin_groups, 'japanese')
endif
if g:spacevim_use_colorscheme==1
call add(g:spacevim_plugin_groups, 'colorscheme')

View File

@ -0,0 +1,8 @@
function! SpaceVim#layers#japanese#plugins() abort
return [
\ ['vim-jp/vimdoc-ja'],
\ ]
endfunction
function! SpaceVim#layers#japanese#config() abort
endfunction