" " register pathogen " runtime bundle/pathogen/autoload/pathogen.vim call pathogen#infect() call pathogen#helptags() " " behavior " set nocompatible " use vim, not vi settings set wildmenu " command line tab completion menu set wildignore=*.pyc,.git " ignore from autocomplete set ruler " show the cursor position all the time set showcmd " display incomplete commands set incsearch " do incremental searching set ignorecase " ignore case in search set smartcase " respect case in search if uppercase is used set nowrap " do not wrap lines set backspace=indent,eol,start " backspace over all stuff set cursorcolumn " highlight the current column set cursorline " highlight the current line set vb t_vb= " no beeping set laststatus=2 " always show the status line " " formatting " set autoindent set tabstop=4 set softtabstop=4 set shiftwidth=4 set expandtab set smarttab set shiftround set listchars=tab:»·,trail:· set list " " filetype-specific " if has("autocmd") filetype plugin indent on au! au FileType text setlocal tw=80 ts=2 sw=2 sts=2 au FileType markdown setlocal tw=80 ts=2 sw=2 sts=2 au FileType html setlocal ts=2 sw=2 sts=2 au FileType xhtml setlocal ts=2 sw=2 sts=2 au FileType ruby setlocal ts=2 sw=2 sts=2 au FileType eruby setlocal ts=2 sw=2 sts=2 au FileType htmldjango setlocal ts=2 sw=2 sts=2 au FileType coffee setlocal ts=2 sw=2 sts=2 " text files au BufRead,BufNewFile *.txt setlocal filetype=text " markdown au BufRead,BufNewFile *.md setlocal filetype=markdown " html templates au BufRead,BufNewFile *.mako setlocal filetype=html au BufRead,BufNewFile *.ftl setlocal filetype=html au BufRead,BufNewFile *.handlebars setlocal filetype=html ts=4 sts=4 sw=4 " css templates au BufRead,BufNewFile *.less setlocal filetype=css " zsh configs and scripts au BufRead,BufNewFile *.zsh-overrides setlocal filetype=zsh au BufRead,BufNewFile *.zsh setlocal filetype=zsh " ruby files au BufRead,BufNewFile *.cap setlocal filetype=ruby " When editing a file, always jump to the last known cursor position. " Don't do it when the position is invalid or when inside an event handler au BufReadPost * \ if line("'\"") > 0 && line("'\"") <= line("$") | \ exe "normal g`\"" | \ endif endif " " bindings " let mapleader = "," " convenience nnoremap x :source ~/.vimrc nnoremap nnoremap j nnoremap k nnoremap h nnoremap l inoremap jk inoremap kj " NERDTree nnoremap :NERDTreeToggle nnoremap e :NERDTreeToggle let NERDTreeMapActivateNode='' " bufexplore nnoremap fe :BufExplorer nnoremap fs :BufExplorerHorizontalSplit nnoremap fv :BufExplorerVerticalSplit " ctrlp let g:ctrlp_map ='a' " solarized nnoremap vl :let g:solarized_visibility="low" | colo solarized nnoremap vh :let g:solarized_visibility="high" | colo solarized " " visual " let g:solarized_visibility="high" "trailing characters very visible let g:solarized_menu=0 "don't show the gui menu syntax on set background=light colo solarized set hlsearch " " local additions " if filereadable($HOME."/.vimrc-local") source ~/.vimrc-local endif