1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 10:40:03 +08:00
This commit is contained in:
wsdjeg 2016-12-31 23:09:52 +08:00
parent af76cde019
commit 89ae59a024
3 changed files with 10 additions and 0 deletions

View File

@ -18,6 +18,9 @@ function! SpaceVim#init() abort
let g:spacevim_enable_cursorcolumn = 0
let g:spacevim_enable_neomake = 1
""
" set the guifont of Spacevim, default is empty.
let g:spacevim_guifont = ''
""
" Enable ycm or not, but default it is 0.
let g:spacevim_enable_ycm = 0
let g:spacevim_enable_neocomplcache = 0
@ -110,6 +113,7 @@ endfunction
function! SpaceVim#default() abort
call add(g:spacevim_plugin_groups, 'web')
call add(g:spacevim_plugin_groups, 'lang')
call add(g:spacevim_plugin_groups, 'chat')
call add(g:spacevim_plugin_groups, 'javascript')
call add(g:spacevim_plugin_groups, 'ruby')
call add(g:spacevim_plugin_groups, 'python')

View File

@ -13,6 +13,9 @@ if has("gui_running")
else
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ 11
endif
if !empty(g:spacevim_guifont)
exe 'set guifont=' . g:spacevim_guifont
endif
endif
" indent use backspace delete indent, eol use backspace delete line at

View File

@ -15,6 +15,9 @@ The default_indent of SpaceVim.
*g:spacevim_max_column*
The max column of SpaceVim
*g:spacevim_guifont*
set the guifont of Spacevim, default is empty.
*g:spacevim_enable_ycm*
Enable ycm or not, but default it is 0.