" Colin's vimrc " " || www %%% " vwv || )_(,;;;, ,;,\_/ www " )_( || \|/ \_/ )_(\| (_) " \| \ || /\\|/ |/ \| \|// | " "___\|//V\\||//_\V/_\|//_______\\|//V/\\|/__ "*************** navigation *************** set history=500 set tags=./tags;../../../../ "*************** search stuff *************** set incsearch set hlsearch set showmatch set nowrapscan set ignorecase set smartcase "*************** formatting *************** :filetype plugin on :filetype indent on set linebreak set ai set ruler syntax on highlight Comment ctermfg=darkcyan highlight Constant ctermfg=red highlight Search cterm=reverse highlight Error ctermfg=white ctermbg=1 set t_Co=256 set sw=4 set ts=4 set et "*************** bell *************** set vb t_vb="." set visualbell "*************** movement stuff *************** set splitbelow set splitright "imap set pastetoggle= "*************** gui stuff *************** "set guifont=fixed set guioptions-=T set laststatus=2 "noremap  "*************** comand-mode stuff *************** " This abbreviation makes it easier to type :e . " When you type '%%' in command mode, it will be expanded to the directory name " of the file you're currently editing. cabbr %% expand('%:p:h') "*************** colin's auto-commenter *************** map ,/ :s/^/\/\//:nohlsearch map ,,/ :s/^\/\///:nohlsearch map ,# :s/^/#/:nohlsearch map ,,# :s/^#//:nohlsearch map ," :s/^/\"/:nohlsearch map ,," :s/^\"//:nohlsearch " whitespace stripper map ,w :s/[\t ][\t ]*$// " More ergonomic key binding for omni-complete inoremap "*************** shortcuts ************** map \b :ConqueTermSplit /bin/bash map \B :ConqueTermVSplit /bin/bash "command Bash execute ":ConqueTerm bash" "*************** grep plugin *************** :let Grep_Default_Filelist = '*.c *.cpp *.cc *.hpp *.rb *.h *.t *.py *.rst *.go *.java *.S *.scala' :let Grep_Skip_Files = 'core.* *.svn *~ *.swp *.swo *.bak cscope.out cscope.files' "*************** pre-filled registers ****************** let @w="Signed-off-by: Colin McCabe " let @s="Signed-off-by: Colin Patrick McCabe " set t_Co=256 highlight DiffAdd ctermfg=NONE ctermbg=grey highlight DiffDelete ctermfg=NONE ctermbg=grey highlight DiffChange ctermfg=NONE ctermbg=grey highlight DiffText ctermfg=NONE ctermbg=grey