Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. setw -g mode-keys vi
  2. unbind-key j
  3. bind-key j select-pane -D # Similar to 'C-w j' to navigate windows in Vim
  4. unbind-key k
  5. bind-key k select-pane -U
  6. unbind-key h
  7. bind-key h select-pane -L
  8. unbind-key l
  9. bind-key l select-pane -R
  10. unbind C-b
  11. set -g prefix C-w
  12. bind C-w send-prefix
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement