debay /.gvimrc

I run this gvimrc on Mac OS X with macvim (http://code.google.com/p/macvim/). I think the only thing that could qualify as interesting in here is the 'taglist' plug-in support, but even that isn't hard to dig up elsewhere on the Internet.
" Make external commands work through a pipe instead of a pseudo-tty
set noguipty

" Make shift-insert work like in Xterm
map  
map!  

" Customize font for Mac OS X
set anti enc=utf-8 gfn=Monaco:h12

" Switch on syntax highlighting if it wasn't on yet.
if !exists("syntax_on")
  syntax on
endif


set hlsearch            " Switch on search pattern highlighting.
set number              " Turn on line numbers
set numberwidth=5       " By default can fit at least 9999 lines
set lines=52            " Make our GUI window reasonably tall
set columns=85          " 80 columns + room for line numbers
set ch=2                " Make command line two lines high
set mousehide           " Hide the mouse when typing text

colorscheme inkpot      " Load color scheme. I like 'inkpot' as a dark them
                        " and 'summerfruit' as a light one.


"
" Customize the 'taglist' plug-in: http://vim-taglist.sourceforge.net
"

" Point the taglist.vim plug-in to the correct location for exuberant ctags.
" Mac OS X ships with 'regular' ctags, so I manually installed exuberant ctags
" and pointed directly to that. I would rather this be picked up dynamically
" via the $PATH, since it is first in the $PATH in the shell, but I'll leave
" that for another day.
let Tlist_Ctags_Cmd = '/usr/local/bin/ctags'

" Turn on the taglist for appropriate file types.
autocmd FileType python :TlistToggle
autocmd FileType ruby :TlistToggle
autocmd FileType java :TlistToggle
autocmd FileType javascript :TlistToggle
autocmd FileType html :TlistToggle
autocmd FileType css :TlistToggle
autocmd FileType xml :TlistToggle
autocmd FileType php :TlistToggle
autocmd FileType c :TlistToggle

" Toggles the taglist for ctags.
map T :TlistToggle