VIM: Adds split movement mappings

Ctrl + h,j,k,l will move between vim splits
This commit is contained in:
Jonathan Hodgson 2020-09-26 16:23:35 +01:00
parent 8a99723c51
commit 05cf5d188c

View file

@ -8,3 +8,9 @@ vnoremap : ;
" Make jj in insert mode go to normal mode
inoremap jj <Esc>
" Make ctrl+hjkl change focus between windows
nnoremap <c-h> <c-w>h
nnoremap <c-j> <c-w>j
nnoremap <c-k> <c-w>k
nnoremap <c-l> <c-w>l