VIM: Adds split movement mappings
Ctrl + h,j,k,l will move between vim splits
This commit is contained in:
parent
8a99723c51
commit
05cf5d188c
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue