mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 00:40:05 +08:00
Fix #12
This commit is contained in:
parent
af76cde019
commit
89ae59a024
@ -18,6 +18,9 @@ function! SpaceVim#init() abort
|
|||||||
let g:spacevim_enable_cursorcolumn = 0
|
let g:spacevim_enable_cursorcolumn = 0
|
||||||
let g:spacevim_enable_neomake = 1
|
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.
|
" Enable ycm or not, but default it is 0.
|
||||||
let g:spacevim_enable_ycm = 0
|
let g:spacevim_enable_ycm = 0
|
||||||
let g:spacevim_enable_neocomplcache = 0
|
let g:spacevim_enable_neocomplcache = 0
|
||||||
@ -110,6 +113,7 @@ endfunction
|
|||||||
function! SpaceVim#default() abort
|
function! SpaceVim#default() abort
|
||||||
call add(g:spacevim_plugin_groups, 'web')
|
call add(g:spacevim_plugin_groups, 'web')
|
||||||
call add(g:spacevim_plugin_groups, 'lang')
|
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, 'javascript')
|
||||||
call add(g:spacevim_plugin_groups, 'ruby')
|
call add(g:spacevim_plugin_groups, 'ruby')
|
||||||
call add(g:spacevim_plugin_groups, 'python')
|
call add(g:spacevim_plugin_groups, 'python')
|
||||||
|
@ -13,6 +13,9 @@ if has("gui_running")
|
|||||||
else
|
else
|
||||||
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ 11
|
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ 11
|
||||||
endif
|
endif
|
||||||
|
if !empty(g:spacevim_guifont)
|
||||||
|
exe 'set guifont=' . g:spacevim_guifont
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" indent use backspace delete indent, eol use backspace delete line at
|
" indent use backspace delete indent, eol use backspace delete line at
|
||||||
|
@ -15,6 +15,9 @@ The default_indent of SpaceVim.
|
|||||||
*g:spacevim_max_column*
|
*g:spacevim_max_column*
|
||||||
The max column of SpaceVim
|
The max column of SpaceVim
|
||||||
|
|
||||||
|
*g:spacevim_guifont*
|
||||||
|
set the guifont of Spacevim, default is empty.
|
||||||
|
|
||||||
*g:spacevim_enable_ycm*
|
*g:spacevim_enable_ycm*
|
||||||
Enable ycm or not, but default it is 0.
|
Enable ycm or not, but default it is 0.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user