X-Git-Url: https://git.sthu.org/?a=blobdiff_plain;f=dotfiles%2Fvim%2F.gvimrc;h=8bbfa5e4366f25b8aee078f5f43a842183e7ead3;hb=9fef42756f5fd61ea6b19d1c4cd628c8d9fa92ce;hp=3c6d7ab484a5cd8f7b11ecf08aea8c623281d3a4;hpb=455842494106c4f7f3906536074ae2d629ed612b;p=shutils.git diff --git a/dotfiles/vim/.gvimrc b/dotfiles/vim/.gvimrc index 3c6d7ab..8bbfa5e 100644 --- a/dotfiles/vim/.gvimrc +++ b/dotfiles/vim/.gvimrc @@ -7,23 +7,32 @@ endif set lines=25 -set columns=85 +set columns=88 set cursorline -"set mousehide -set nomousehide - -colorscheme shuber +set mousehide function SetPresentationFont(mode) if a:mode - set guifont=Monospace\ Bold\ 12 + set guifont=Liberation\ Mono\ for\ Powerline\ 12,Monospace\ Bold\ 12 else - set guifont=Monospace\ 10 + set guifont=Liberation\ Mono\ for\ Powerline\ 10,Monospace\ 10 endif endfunction :menu Presentation.On :call SetPresentationFont(1) :menu Presentation.Off :call SetPresentationFont(0) +call SetPresentationFont(0) + + + +"" {{{ vimrc.local +if filereadable($HOME . "/.gvimrc-local") + source ~/.gvimrc-local +endif +" }}} + + +