links: [[010 Vim MOC]]
### Navigate between splits in vim
Add below code to *.vimrc* file
```
" Easier movement between split windows CTRL + {h, j, k, l}
nnoremap <c-h> <c-w>h
nnoremap <c-j> <c-w>j
nnoremap <c-k> <c-w>k
nnoremap <c-l> <c-w>l
```
Now you can use Ctrl + (h/j/k/l) to navigate
### Navigate between tabs
```sh
gt # Go to next tab
gT # Go to prior tab
<number> gt # go to the number'th tab
```