From a511810052a01ec7362bb18503d187f3cea235c4 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Sun, 28 Nov 2021 17:53:17 +0100 Subject: [PATCH] Update tmux config --- .tmux.conf | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 876e610..134153a 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -8,6 +8,13 @@ set -g status-keys vi setw -g mode-keys vi set -g history-limit 10000 +set-window-option -g automatic-rename on +set-option -g set-titles on + +# Minimal status bar +set -g status-left '' +set -g status-right '' + bind r source-file ~/.tmux.conf # reload tmux conf # Keybindings @@ -32,16 +39,21 @@ bind -r L resize-pane -R 4 # Theming -set -g status-style fg=default,bg=black -setw -g window-status-style fg=default,bg=black -setw -g window-status-current-style fg=black,bg=white set -g pane-border-style fg=#222222 set -g pane-active-border-style fg=#222222 -set -g message-style fg=brightred,bg=black set -g display-panes-active-colour blue -set -g display-panes-colour brightred set -g default-terminal "tmux-256color" +set -g message-style bg=#111111,fg=#aaaaaa +set -g status-interval 1 -# Misc - -set mouse-utf8 off +# statusbar +set -g status-position bottom +set -g window-status-separator '' +set -g status-style 'bg=#111111 fg=#aaaaaa dim' +set -g status-left '' +set -g status-right '#[fg=black,bg=#aaaaaa] #(task status:pending count) #(echo "☐") ' +setw -g window-status-current-style 'fg=black bg=#aaaaaa' +setw -g window-status-current-format ' #I:#W#F ' +setw -g window-status-style 'bg=#111111 fg=#aaaaaa' +setw -g window-status-format ' #I:#W#F ' +setw -g window-status-activity-style 'fg=#aaaaaa bg=#111111'