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 + "" }}}