" 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 ~/.syntax.vim " Switch on search pattern highlighting. set hlsearch endif "........................................................................ " stuff that I have added "........................................................................ set columns=80 set lines=28 set guifont=12x24 set ruler set showmode set noerrorbells set nowrap