Guest User

Untitled

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # use the vim motion keys to move between panes
  2. bind h select-pane -L
  3. bind j select-pane -D
  4. bind k select-pane -U
  5. bind l select-pane -R
  6. #
  7. # # use vim motion keys while in copy mode
  8. setw -g mode-keys vi
  9. #
  10. # # use the vim resize keys.
  11. # # the number at the end is how much the pane will be resized,
  12. # # and 1 is fairly small -- you might want to tweak this.
  13. bind - resize-pane -D 1
  14. bind + resize-pane -U 1
  15. bind < resize-pane -L 1
  16. bind > resize-pane -R 1
Add Comment
Please, Sign In to add comment