" Evan McNabb's .vimrc " evan@mcnabbs.org " Use Vim settings, rather then Vi settings (much better!). " This must be first, because it changes other options as a side effect. set nocompatible " Got to have syntax highlighting syn on " I generally like to have the highlighting set to go against a dark background set bg=dark " Mappings map :nohl map :wq " Save/Quit " Use spell checking map :w!:!aspell check %:e! " Lots of these things are set by default, but I just want to make sure... set foldenable "set to display all folds open set ignorecase " Ignore case in search patterns set hlsearch " Highlight match while typing search pattern set incsearch " Do incremental searches set showcmd " Show (partial) command in status line set ruler " Turn on ruler set number " Show line numbers "set sm " Show matching ()'s []'s {}'s set title " Put title in title bar set noerrorbells " Beeping sucks set shell=/bin/bash " Set shell set history=250 " Set command history length set showmode " Show what mode you're in set autoindent " Autoindentation set splitbelow " Split new windows below existing window... set paste " Allow you to use the mouse to paste without having problems with tabs "set nopaste set mouse=a " Enable mouse map :r /home/emcnabb/.gpl map :r /home/emcnabb/.gpl-airfart set pastetoggle=