From e449851e1d92423f29b745cb4582b39caf4f046a Mon Sep 17 00:00:00 2001 From: eneller Date: Thu, 12 May 2022 09:20:49 +0200 Subject: [PATCH] clean up tmux bar --- .config/tmux/tmux.conf | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 65ae204..2debe24 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -1,10 +1,17 @@ -set -g default-terminal "screen-256color" # use default terminal colors +#CONFIGURATION set-option -g allow-rename off # dont rename windows on command execution +set -s escape-time 0 # dont delay escape key in vim +set -g base-index 1 # start windows numbering at 1 +#COLORS +set -g default-terminal "screen-256color" # use default terminal colors +set-option -g pane-border-style fg=white +set-option -g pane-active-border-style fg=green +set-option -g message-style bg=green,fg=black #STATUSBAR set -g status-position bottom -set -g status-left "[#{session_name}] " -set -g status-right "#{?window_bigger,[#{window_offset_x}#,#{window_offset_y}] ,}\"#{=21:pane_title}\" %H:%M %d-%b-%y" -set -g status-style fg=black,bg=red -set -g base-index 1 # start windows numbering at 1 +set -g status-left "" +set -g status-right "#{?window_bigger,[#{window_offset_x}#,#{window_offset_y}] ,}#{=21:pane_title}" +set -g status-style fg=black,bg=red # color for the statusbar +set-window-option -g window-status-current-style fg=green,bg=black # color for the current window (tab)