From daa3f35c9e2c47c0b25344baadda9c7ee7944bb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20N=C3=A4gele?= Date: Sat, 15 Feb 2014 23:11:49 +0100 Subject: [PATCH] some tweaks to vimrc --- vimrc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/vimrc b/vimrc index 43d72df..a44c5dd 100644 --- a/vimrc +++ b/vimrc @@ -96,9 +96,19 @@ nnoremap k gk vnoremap < >gv +" replace dollar and acute +nnoremap B ^ +nnoremap E $ + +" highlight last inserted text +nnoremap gV `[v`] + " change Y from yy to y$ map Y y$ +" alternative esc +inoremap jk + " remove search hl nnoremap :nohl @@ -154,6 +164,7 @@ Bundle 'davidhalter/jedi-vim' Bundle 'airblade/vim-gitgutter' Bundle 'ivyl/vim-bling' Bundle 'mileszs/ack.vim' +Bundle 'sjl/gundo.vim' "Bundle 'Yggdroot/indentLine' " good with my urxvt config: let g:indentLine_color_term = 239 if installed_vundle == 1 @@ -204,4 +215,7 @@ let g:jedi#popup_on_dot = 0 let g:gitgutter_enabled = 0 noremap g :GitGutterToggle +" Gundo +nnoremap u :GundoToggle + "" }}}