" An example for a gvimrc file.
" The commands in this are executed when the GUI is started.
"
" To use it, copy it to
"     for Unix and OS/2:  ~/.gvimrc
"             for Amiga:  s:.gvimrc
"  for MS-DOS and Win32:  $VIM\_gvimrc

" Make external commands work through a pipe instead of a pseudo-tty
"set noguipty

" Only do this for Vim version 5.0 and later.
if version >= 500

  " Switch on syntax highlighting.
  source $VIM/syntax/syntax.vim

  " Switch on search pattern highlighting.
  set hlsearch
endif
