| 12345678910111213141516171819 |
- # Enable Mouse Support
- set -g mouse on
- # Increase History Limit
- set -g history-limit 50000
- # Start Index at 1
- set -g base-index 1
- setw -g pane-base-index 1
- # True Color Support
- set -g default-terminal "tmux-256color"
- set -as terminal-features ",xterm-256color:RGB"
- # Change Prefix to Ctrl+a
- unbind C-b
- set -g prefix C-a
- bind C-a send-prefix
- # Vim Navigation
- bind h select-pane -L
- bind j select-pane -D
- bind k select-pane -U
- bind l select-pane -R
|