Last active
August 29, 2015 14:01
-
-
Save imtapps/278c0d7673d55afece3c to your computer and use it in GitHub Desktop.
Resize Panes in Vim with this config using arrow keys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nnoremap <Left> :vertical resize +1<CR> | |
nnoremap <Right> :vertical resize -1<CR> | |
nnoremap <Up> :resize +1<CR> | |
nnoremap <Down> :resize -1<CR> | |
" Uncommenting the following line breaks the previous lines | |
" nnoremap <Esc> :nohlsearch<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment