X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/1f60a51c4f6f2676104b80ebd15deef30b9f4e0c..a6ea1a1fa2e612852376b6deab07cb2388608fc8:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index 9767cb1..2fe6f59 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -33,6 +33,7 @@ Plugin 'ram-z/vim-clang-format' Plugin 'ram-z/vimwiki' Plugin 'rdnetto/ycm-generator' Plugin 'scrooloose/syntastic' +Plugin 'sgeb/vim-diff-fold' Plugin 'shougo/unite.vim' Plugin 'shougo/vimproc.vim' Plugin 'sjl/gundo.vim' @@ -68,7 +69,6 @@ Plugin 'kana/vim-operator-user' Plugin 'vim-latex/vim-latex' Plugin 'alx741/vinfo' Plugin 'derekwyatt/vim-protodef' -Plugin 'sgeb/vim-diff-fold' " needs editing colorscheme " Plugin 'jeaye/color_coded' " Check LucHermites plugins: https://github.com/LucHermitte/lh-cpp @@ -489,7 +489,7 @@ nnoremap za vnoremap zf " save with sudo -cabbrev w!! w !sudo tee % > /dev/null +cabbrev w!! SudoWrite " uppercase previous word inoremap gUiwgi @@ -657,6 +657,7 @@ if executable('ag') let g:unite_source_grep_recursive_opt = '' end nnoremap [unite]a :Unite grep:.:: +nnoremap [unite]A :Unite grep:.:-w: command! -nargs=1 Ag Unite grep:.:: " unite-file_rec {{{3 @@ -839,8 +840,8 @@ function! FindGitDirOrHome() endif endfunction command! Cd cd %:h -command! Cr execute('cd ' . FindGitDirOrHome()) +command! Cdr execute('cd ' . FindGitDirOrHome()) command! LCd lcd %:h -command! LCr execute('lcd ' . FindGitDirOrHome()) +command! LCdr execute('lcd ' . FindGitDirOrHome()) " vim:set et sw=2 ts=2 tw=78: