Plugin 'vim-scripts/mediawiki.vim'
Plugin 'vim-scripts/replacewithregister'
Plugin 'tpope/vim-abolish'
+Plugin 'derekwyatt/vim-protodef'
" remove entries first
set runtimepath -=$HOME/.vim
colorscheme badwolf
" options {{{1
+" put $ and the end of text to be replaced with 'cw' and the likes
+set cpoptions+=$
+
" moving around, searching and patterns {{{2
set incsearch " show match for partly typed search command
set ignorecase " ignore case when using a search pattern
set foldmethod=marker " folding type
set foldlevelstart=0 " value for 'foldlevel' when starting to edit a file
+" open folds when jumping to line
+set foldopen+=jump
+
" save and restore folds
set viewoptions=cursor " only save cursor position
" diff mode {{{2
-set diffopt=filler,vertical
+" vertical splits and ignore white space in diffs
+set diffopt=filler,vertical,iwhite
" reading and writing files {{{2
set modeline " read modelines
set wildignore+=*.orig " Merge resolution files
" various {{{2
-set virtualedit=block " let cursor move past last char in <C-V> mode
+set virtualedit=all " let cursor move past last char in <C-V> mode
set viminfo='100,<50,s10,h,n$XDG_CACHE_HOME/vim/viminfo " viminfo defaults but save file in .cache
set viewdir=$XDG_CACHE_HOME/vim/view//
vnoremap L g_
" Heresy, emacs insert bindings
-inoremap <c-a> <esc>I
-inoremap <c-e> <esc>A
-cnoremap <c-a> <home>
-cnoremap <c-e> <end>
+inoremap <C-A> <Esc>I
+inoremap <C-E> <Esc>A
+cnoremap <C-A> <Home>
+cnoremap <C-E> <End>
" proper movement when lines are wrapped
noremap <expr> j (v:count == 0 ? 'gj' : 'j')
autocmd BufWinEnter *.* silent loadview
" save with sudo
-cnoremap w!! w !sudo tee % > /dev/null
+cabbrev w!! w !sudo tee % > /dev/null
" uppercase previous word
inoremap <C-C> <Esc>gUiwgi
+" http://git.io/v3ZeU
+nmap <silent> <leader>qq :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<' . synIDattr(synID(line("."),col("."),0),"name") . "> lo<" . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"<CR>
+
+" commands {{{1
+command! Cd lcd %:h
+command! Cr execute('lcd ' . FindGitDirOrHome())
+
" plugins options {{{1
" airline {{{2
let g:airline#extensions#whitespace#enabled = 1
" vim-easy-align {{{2
" start interactive EasyAlign in visual mode
vmap <Enter> <Plug>(EasyAlign)
+nmap ga <Plug>(EasyAlign)
" vim-json {{{2
let g:vim_json_syntax_conceal = 0
nnoremap <silent> coS :call SwitchSpell()<CR>
" fix spelling with first choice
nnoremap <Leader>f 1z=
+
+" gitdir or home {{{2
+" from derek wyatt:
+" http://git.io/v3GAV
+function! FindGitDirOrHome()
+ let filedir = expand('%:p:h')
+ if isdirectory(filedir)
+ let cmd = 'bash -c "(cd ' . filedir . '; git rev-parse --show-toplevel 2>/dev/null)"'
+ let gitdir = system(cmd)
+ if strlen(gitdir) == 0
+ return '~'
+ else
+ return gitdir[:-2]
+ endif
+ else
+ return '~'
+ endif
+endfunction
+
+" vim:set et sw=2 ts=2 tw=78: