diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-25 10:52:43 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-25 10:52:43 +0200 |
| commit | d1c8cdd72cfd52b9ab57bdcc61cc6e78d579f40d (patch) | |
| tree | 9cbb5378487938ff5739fdcad7586023011cbd1e /.tmux.conf | |
| parent | 94e841dfc46324bc8d15db52b7c6f3fab51438f3 (diff) | |
| download | dotfiles-d1c8cdd72cfd52b9ab57bdcc61cc6e78d579f40d.tar.gz | |
Moved to GNU Stow
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 | |||
