X-Git-Url: http://git.sthu.org/?a=blobdiff_plain;f=dotfiles%2Fvim%2F.gvimrc;h=61042d13a1a1d5512189c7077f38f956c016d851;hb=f558e6cbacb2a9ebf2834987a2356d340a229f9a;hp=1b2d6e690ed361c99ce97428dcc18c6ebc3d4ac4;hpb=e24bd8b17586664e83ea84ea35ea8a05a486d6a8;p=shutils.git diff --git a/dotfiles/vim/.gvimrc b/dotfiles/vim/.gvimrc index 1b2d6e6..61042d1 100644 --- a/dotfiles/vim/.gvimrc +++ b/dotfiles/vim/.gvimrc @@ -7,22 +7,22 @@ endif set lines=25 -set columns=85 +set columns=90 + +au FileType tex set columns=110 set cursorline set mousehide +"set guioptions-=T + +set guifont=DejaVu\ Sans\ Mono\ 10,Monospace\ 10 -colorscheme shuber-wombat +"" {{{ vimrc.local +if filereadable($HOME . "/.gvimrc-local") + source ~/.gvimrc-local +endif +" }}} -function SetPresentationFont(mode) - if a:mode - set guifont=Monospace\ Bold\ 12 - else - set guifont=Monospace\ 10 - endif -endfunction -:menu Presentation.On :call SetPresentationFont(1) -:menu Presentation.Off :call SetPresentationFont(0)