.tmux.conf 566 B

12345678910111213141516171819202122232425
  1. # remap prefix to Control + a
  2. set -g prefix C-a
  3. # bind 'C-a C-a' to type 'C-a'
  4. bind C-a send-prefix
  5. unbind C-b
  6. # Use Ctrl-Left and Ctrl-Right to move between words
  7. set-window-option -g xterm-keys on
  8. # Use Home and End keys
  9. bind -n End send-key C-e
  10. bind -n Home send-key C-a
  11. # instantly use esc key
  12. set -s escape-time 0
  13. # use coloring that won't disrupt vim colorscheme
  14. set -g default-terminal "xterm"
  15. # Use vi-like keybindings
  16. set-window-option -g mode-keys vi
  17. bind -r h select-pane -L
  18. bind -r j select-pane -D
  19. bind -r k select-pane -U
  20. bind -r l select-pane -R