Skip to content

Instantly share code, notes, and snippets.

@matheusramos
Created March 5, 2018 00:56
Show Gist options
  • Save matheusramos/2c63561e08b473e3cc145cfbc1482b92 to your computer and use it in GitHub Desktop.
Save matheusramos/2c63561e08b473e3cc145cfbc1482b92 to your computer and use it in GitHub Desktop.
My personal gvimrc config file
" Make external commands work through a pipe instead of a pseudo-tty
"set noguipty
" You can also specify a different font, overriding the default font
"if has('gui_gtk2')
" set guifont=Bitstream\ Vera\ Sans\ Mono\ 12
"else
" set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1
"endif
" If you want to run gvim with a dark background, try using a different
" colorscheme or running 'gvim -reverse'.
" http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/ has examples and
" downloads for the colorschemes on vim.org
" Source a global configuration file if available
if filereadable("/etc/vim/gvimrc.local")
source /etc/vim/gvimrc.local
endif
:set guioptions-=m " removes menu bar
:set guioptions-=T " removes toolbar
:set guifont=Anonymous\ Pro\ 12 " sets new font
set lines=999 columns=999 " maximizes gvim window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment