2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-03 15:40:30 +00:00
steffen-dotfiles/vim/config/gui.vim

11 lines
354 B
VimL
Raw Normal View History

" gui options for macvim / gvim
"======================================================================
if has('gui_running')
2015-09-05 14:03:13 +00:00
set guifont=Hack:h12 " a nice font here
set linespace=-2 " hack is nice, but very wide...
set guioptions-=T " no toolbar
set guioptions-=L " no left scrollbar
set guioptions-=r " no right scrollbar
endif