X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/c68ede85400e9fb1d01c2acbbb529ca4acdaad5a..8b4070b51e98191e73b51fc28c42b8a10e0d92dc:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index cf299bf..c7397c4 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -18,6 +18,7 @@ Bundle 'elzr/vim-json' Bundle 'ervandew/ag.git' Bundle 'http://git.code.sf.net/p/vim-latex/vim-latex' Bundle 'kien/ctrlp.vim' +Bundle 'kshenoy/vim-signature' Bundle 'majutsushi/tagbar' Bundle 'scrooloose/nerdtree' Bundle 'scrooloose/syntastic' @@ -53,6 +54,7 @@ filetype plugin indent on " bindings {{{1 " allow both and / to be map +nnoremap :make " moving around, searching and patterns {{{1 set incsearch " show match for partly typed search command @@ -214,8 +216,8 @@ map Y y$ vnoremap . :normal . " add line without changing position or leaving mode -map o :set pastem`o``:set nopaste -map O :set pastem`O``:set nopaste +noremap o :set pastem`o``:set nopaste +noremap O :set pastem`O``:set nopaste " Don't use Ex mode, use Q for formatting map Q gq