added nvim window resizing with <C-Arrow>
This commit is contained in:
parent
42dc76f53a
commit
254505c08a
1 changed files with 6 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue