diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-03-19 16:13:19 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-03-19 16:13:19 +0100 |
| commit | b2aa56c7008574e20f68a35ad6ccff03bf10de6d (patch) | |
| tree | 9eb250b1bf1142a575638d3243291f07160fbab0 /tmux.conf | |
| parent | 3c3d1fe89cfae1e413e5a0158926198bfb088b42 (diff) | |
| download | dotfiles-b2aa56c7008574e20f68a35ad6ccff03bf10de6d.tar.gz | |
Added config
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..0213742 --- /dev/null +++ b/tmux.conf | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | # Set window titles | ||
| 2 | set-window-option -g automatic-rename on | ||
| 3 | set-option -g set-titles on | ||
| 4 | |||
| 5 | # Leader key | ||
| 6 | set -g prefix M-x | ||
| 7 | |||
| 8 | # Send Ctrl+a to applications by pressing it twice | ||
| 9 | bind M-x send-prefix | ||
| 10 | |||
| 11 | # Start windows number @1 Instead of @0 | ||
| 12 | set -g base-index 1 | ||
| 13 | set-window-option -g pane-base-index 1 | ||
| 14 | |||
| 15 | # Renumber windows when closing | ||
| 16 | set -g renumber-windows on | ||
| 17 | |||
| 18 | # Statusbar: purple bg and white fg. | ||
| 19 | set -g status-bg '#480b8e' | ||
| 20 | set -g status-fg '#ffffff' | ||
| 21 | set -g window-status-current-format "#[fg=#ffffff]#[bg=#111111]#[fg=#ffffff]#[bg=#111111] #I:#W #[fg=#ffffff]#[bg=#111111]" | ||
| 22 | set -g pane-active-border fg=#777777 | ||
| 23 | set -g pane-border-style fg=#222222 | ||
