16 lines
334 B
VimL
16 lines
334 B
VimL
" This is special settings for vim-gui.
|
|
"
|
|
if has("gui_running")
|
|
if has("gui_gtk2")
|
|
set guifont=Inconsolata\ 12
|
|
elseif has("gui_macvim")
|
|
set guifont=Menlo\ Regular:h14
|
|
elseif has("gui_win32")
|
|
set guifont=CaskaydiaMono\ NFM:h12
|
|
endif
|
|
set go-=T
|
|
set go-=m
|
|
set go-=r
|
|
set go-=L
|
|
endif
|