diff --git a/dotfiles/vim/vimrc b/dotfiles/vim/vimrc index c6331a6..583ccf7 100644 --- a/dotfiles/vim/vimrc +++ b/dotfiles/vim/vimrc @@ -31,6 +31,11 @@ nmap y "*yy " in normal mode p will paste from the selection clipboard nmap p "*p +nnoremap h :wincmd h +nnoremap j :wincmd j +nnoremap k :wincmd k +nnoremap l :wincmd l + " }}} " VUNDLE {{{ @@ -162,7 +167,7 @@ set path+=** set incsearch " search as characters are entered set hlsearch " highlight matches -" turn off search hightlight after search with `,` +" turn off search hightlight after search nnoremap :nohlsearch " }}}