From 19ac67eaf2e7694f41381fe362c31676bf2eafa8 Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Wed, 1 Dec 2021 16:30:04 +0100 Subject: [PATCH] tmux: let's make it pretty --- tmux/.tmux.conf | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 9bc4e76..adbd2ca 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -14,8 +14,30 @@ set-option -ga terminal-overrides ",xterm*:Tc" # vi style copy mode setw -g mode-keys vi -# do not truncate session name -set -g status-left-length 15 - # set focus events set-option -g focus-events on + +# theming +# modes +setw -g clock-mode-colour white + +# panes +set -g pane-border-style 'fg=colour244' +set -g pane-active-border-style 'fg=colour255' + +# statusbar +set -g status-position bottom +set -g status-justify left +set -g status-style 'bg=color8 fg=colour15' +set -g status-right '#[bg=color0] @#H (^_^) %H:%M ' +set -g status-left '[#S]' +set -g status-right-length 50 +set -g status-left-length 20 +setw -g window-status-current-style 'fg=brightgreen bg=color0 bold' +setw -g window-status-current-format ' #I#[fg=color15]:#W#[fg=brightgreen]#F ' +setw -g window-status-style 'fg=brightgreen bg=colour236' +setw -g window-status-format ' #I#[fg=colour15]:#W#[fg=green bold]#F ' +setw -g window-status-bell-style 'fg=colour255 bg=colour1 bold' + +# messages +set -g message-style 'fg=black bg=white bold'