Broke out vim rc into nicer pieces :)

This commit is contained in:
Wryn Wagner
2019-09-26 16:00:03 -06:00
parent 90eef0d7dc
commit 4b195da0e2
9 changed files with 111 additions and 82 deletions

View File

@ -0,0 +1,15 @@
" -- Pane/Window Navigation -------------------------- {{{
" (SHIFT + DIRECTION) for tabs
nnoremap <S-l> gt
nnoremap <S-h> gT
" (CTRL + DIRECTION) for panes
nnoremap <C-l> <C-w>l
nnoremap <C-h> <C-w>h
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
" (CTRL + n) for files
nnoremap <C-n> :n<CR>
nnoremap <C-b> :N<CR>
" }}}