dotfiles/gvimrc

20 lines
461 B
VimL
Raw Permalink Normal View History

2012-11-01 10:52:21 -07:00
" List mode on here because the GUI has more color possibilities.
2015-01-03 18:39:12 -08:00
set nolist
if has('win32') || has('win64') || has('win32unix')
set guifont=Inconsolata:h18
elseif has('mac')
try
set guifont=Source\ Code\ Pro\ Light:h13
catch
set guifont=Menlo:h11
endtry
elseif has('linux')
set guifont=Inconsolata\ 14
endif
set guioptions-=T " turn off toolbar
set guioptions-=m " turn off menubar
2013-03-06 09:15:40 -08:00
call togglebg#map("<F10>")