darkrc/gvimrc

16 lines
334 B
VimL
Raw Normal View History

2017-10-24 09:39:53 +00:00
set guioptions-=T
set guioptions-=m
set guioptions-=e
2017-10-24 09:39:53 +00:00
2017-12-19 14:46:02 +00:00
set cursorline " Highlight cursor line
2017-11-16 15:34:43 +00:00
function! SetFont()
if exists("g:font_size_template") && exists("g:font_size")
let &guifont=substitute(g:font_size_template, "%%", g:font_size, "g")
end
endfun
function! SetFontSize(size)
let g:font_size=a:size
call SetFont()
endfun