Skip to content

Instantly share code, notes, and snippets.

@imtapps
Last active August 29, 2015 14:01
Show Gist options
  • Save imtapps/278c0d7673d55afece3c to your computer and use it in GitHub Desktop.
Save imtapps/278c0d7673d55afece3c to your computer and use it in GitHub Desktop.
Resize Panes in Vim with this config using arrow keys
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