My personal .vimrc file
Jul 16 2009To use this just create a file named .vimrc in your home dir and load up the following into it:
syntax on set expandtab set autoindent set background=dark set bs=2 set ci set guifont=Monospace\ 10 set history=50 set hlsearch set laststatus=2 set nocompatible set nosi set nowrap set number set ruler set scrolloff=5 set shiftwidth=4 set showtabline=4 set tabstop=4 set viminfo='20,\"50 set list! set listchars="\t" colorschem pablo " Setup trailing space highlighting highlight ExtraWhitespace ctermbg=darkgreen guibg=darkgreen match ExtraWhitespace /\s\+$/ " Auto Command: match extra white spaces on new tabs that are opened. au TabEnter * :match ExtraWhitespace /\s\+$/ " Hide python cache files (.pyc) in NERDTree let NERDTreeIgnore=['\.pyc']