Set of scripts used for various projects.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
543 B

  1. # macosx tmux doesn't support reverse video for nvi
  2. # https://github.com/tmux/tmux/issues/2262
  3. set -g default-terminal "xterm-256color"
  4. unbind C-b
  5. set -g prefix C-a
  6. bind C-a send-prefix
  7. bind ^L refresh-client
  8. set-window-option -g mode-keys vi
  9. bind < resize-pane -L 4
  10. bind > resize-pane -R 4
  11. bind - resize-pane -D 4
  12. bind + resize-pane -U 4
  13. set -g mode-mouse off
  14. set -g mouse-resize-pane off
  15. set -g mouse-select-pane off
  16. set -g mouse-select-window off
  17. bind k select-pane -U
  18. bind j select-pane -D
  19. bind h select-pane -L
  20. bind l select-pane -R