gvimrc 664 B

1234567891011121314151617181920
  1. " Make external commands work through a pipe instead of a pseudo-tty
  2. "set noguipty
  3. " You can also specify a different font, overriding the default font
  4. "if has('gui_gtk2')
  5. " set guifont=Bitstream\ Vera\ Sans\ Mono\ 12
  6. "else
  7. " set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1
  8. "endif
  9. " If you want to run gvim with a dark background, try using a different
  10. " colorscheme or running 'gvim -reverse'.
  11. " http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/ has examples and
  12. " downloads for the colorschemes on vim.org
  13. " Source a global configuration file if available
  14. if filereadable("/etc/vim/gvimrc.local")
  15. source /etc/vim/gvimrc.local
  16. endif