diff options
Diffstat (limited to '.tmux.conf')
| -rw-r--r-- | .tmux.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..f71afa0 --- /dev/null +++ b/.tmux.conf | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | set -g default-terminal "screen-256color" | ||
| 2 | set-window-option -g automatic-rename on | ||
| 3 | set-window-option -g mode-keys vi | ||
| 4 | set-option -g set-titles on | ||
| 5 | set-option -sg escape-time 10 | ||
| 6 | set-option -g mouse off | ||
| 7 | |||
| 8 | set -g prefix M-x | ||
| 9 | bind M-x send-prefix | ||
| 10 | |||
| 11 | set -g base-index 1 | ||
| 12 | set-window-option -g pane-base-index 1 | ||
| 13 | set -g renumber-windows on | ||
| 14 | |||
| 15 | set -g status-bg '#222222' | ||
| 16 | set -g status-fg '#ffffff' | ||
| 17 | set -g window-status-current-format "#[fg=#ffffff]#[bg=#000000]#[fg=#ffffff]#[bg=#000000] #I:#W #[fg=#ffffff]#[bg=#000000]" | ||
| 18 | |||
| 19 | bind-key Up select-pane -U | ||
| 20 | bind-key Down select-pane -D | ||
| 21 | bind-key Left select-pane -L | ||
| 22 | bind-key Right select-pane -R | ||
| 23 | |||
