diff options
Diffstat (limited to 'tmux')
| -rw-r--r-- | tmux/tmux.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..343568c --- /dev/null +++ b/tmux/tmux.conf | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | set -g mouse on | ||
| 2 | set -g default-terminal "xterm-256color" | ||
| 3 | set -g status-left " " | ||
| 4 | set -g status-right "" | ||
| 5 | set -g base-index 1 | ||
| 6 | set -g pane-base-index 1 | ||
| 7 | set -g history-limit 10000 | ||
| 8 | set -g escape-time 0 | ||
| 9 | set -g aggressive-resize on | ||
| 10 | set -g window-status-style fg=black,bg=green | ||
| 11 | set -g window-status-current-style fg=black,bg=blue,bold | ||
| 12 | set -g mode-keys vi | ||
| 13 | |||
| 14 | bind -n C-S-Left previous-window | ||
| 15 | bind -n C-S-Right next-window | ||
| 16 | |||
| 17 | bind h select-pane -L | ||
| 18 | bind j select-pane -D | ||
| 19 | bind k select-pane -U | ||
| 20 | bind l select-pane -R | ||
| 21 | |||
| 22 | bind m set -g mouse \; display "Mouse #{?mouse,ON,OFF}" | ||
| 23 | bind r source-file ~/.config/tmux/tmux.conf \; display-message "Config reloaded" | ||
| 24 | |||
