added nvim window resizing with <C-Arrow>
This commit is contained in:
parent
42dc76f53a
commit
254505c08a
|
@ -89,3 +89,9 @@ map <Leader>" :vsplit<CR>
|
|||
|
||||
" split with <Leader>, then %"
|
||||
map <Leader>% :split<CR>
|
||||
|
||||
" resize windows
|
||||
nnoremap <C-Left> :vertical resize -5<CR>
|
||||
nnoremap <C-Right> :vertical resize +5<CR>
|
||||
nnoremap <C-Up> :resize -2<CR>
|
||||
nnoremap <C-Down> :resize +2<CR>
|
||||
|
|
Loading…
Reference in New Issue