Skip to content

Instantly share code, notes, and snippets.

@brentvatne
Created August 16, 2012 20:23
Show Gist options
  • Save brentvatne/3373342 to your computer and use it in GitHub Desktop.
Save brentvatne/3373342 to your computer and use it in GitHub Desktop.
easy pane resize with vim
" ctrl+l, h, j, k will resize panes in the directions you would expect
map <C-l> 5<C-w>>
map <C-h> 5<C-w><
map <C-j> 3<C-w>+
map <C-k> 3<C-w>-
" zoomwin plugin required, leader leader will toggle fullscreen for active pane
map <leader><leader> :ZoomWin<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment