tmux.conf 446 B

12345678910111213141516171819
  1. # Enable Mouse Support
  2. set -g mouse on
  3. # Increase History Limit
  4. set -g history-limit 50000
  5. # Start Index at 1
  6. set -g base-index 1
  7. setw -g pane-base-index 1
  8. # True Color Support
  9. set -g default-terminal "tmux-256color"
  10. set -as terminal-features ",xterm-256color:RGB"
  11. # Change Prefix to Ctrl+a
  12. unbind C-b
  13. set -g prefix C-a
  14. bind C-a send-prefix
  15. # Vim Navigation
  16. bind h select-pane -L
  17. bind j select-pane -D
  18. bind k select-pane -U
  19. bind l select-pane -R