" directory to search for set path=., " allow backspacing over everything in insert mode set backspace=indent,eol,start " Monaco 14 set guifont=Monaco:h14 " syntax on syntax enable colorscheme evening " use indents of 4 spaces, and have them copied down lines: set shiftwidth=4 set tabstop=4 set softtabstop=4 set expandtab set autoindent set smartindent set number " make searches case-insensitive, unless they contain upper-case letters: set ignorecase set smartcase set history=50000 " keep 50 lines of command line history set ruler " show the cursor position all the time set showcmd " display incomplete commands " search set hlsearch " display search matches :hi Search guibg=LightBlue set incsearch " do incremental searching set wildignore=*.pyc,*.tar,.svn,libs :filetype on " autosave when buffer loses focus set autowriteall map # :cnext map @ :tnext map ! :exec "vim /" .expand("") . "/ **/*.py" map & :!ctags -R . map ,s :source ~/.vimrc map ,e :e ~/.vimrc set tags=tags,/usr/local/google_appengine/tags