resizing vim windows factor is now 1

This commit is contained in:
Christoph J. Scherr 2023-07-03 14:03:22 +02:00
parent 043c0f0655
commit 41448d9ca9
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
1 changed files with 4 additions and 4 deletions

View File

@ -91,7 +91,7 @@ map <Leader>" :vsplit<CR>
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>
nnoremap <C-Left> :vertical resize -1<CR>
nnoremap <C-Right> :vertical resize +1<CR>
nnoremap <C-Up> :resize -1<CR>
nnoremap <C-Down> :resize +1<CR>