From 5dfc957d81d5a355e798246bcaff68b5d74038bd Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Thu, 11 May 2017 21:07:24 -0500 Subject: [PATCH] .tmux.conf: Minor theme tweaks --- .tmux.conf | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 080f27d..57e7334 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -13,20 +13,33 @@ set -sg default-term 'screen-256color' # ------------------------------------------------------------------- # Look and Feel # ------------------------------------------------------------------- -# update program titlebar caption -set -g set-titles on -set -g set-titles-string '[#S:#I.#P #H] #W' - # status bar set -g status-style none +set -g status-left-style none +set -g status-left-length 40 set -g status-left '' -set -g status-right '#[fg=blue]#(whoami)@#h (#S:#I.#P)' -setw -g window-status-style 'fg=brightblack' -setw -g window-status-current-style 'bg=brightblack,bold,fg=brightwhite' - -# pane borders +set -g status-right-style none +set -g status-right-length 150 +set -g status-right '#[bg=black,fg=cyan] #(whoami)@#H #[fg=default]/#[fg=cyan] #S ' +# window status +set -g window-status-format ' #I:#W#F ' +set -g window-status-current-format ' #I:#W#F ' +set -g window-status-style 'fg=colour244' +set -g window-status-separator '' +set -g window-status-current-style 'bg=brightblack,fg=brightwhite,bold' +set -g window-status-activity-style 'bg=colour250,fg=colour237' # fg and bg are flipped here due to a bug in tmux +# pane border +set -g pane-border-style 'fg=brightblack' set -g pane-active-border-style 'fg=green' -set -g pane-border-style 'fg=black' +# pane number indicator +set -g display-panes-colour white +set -g display-panes-active-colour brightyellow +# clock mode +set -g clock-mode-colour white +# messages +set -g message-style 'bg=blue,fg=brightwhite' +set -g message-command-style 'bg=green,fg=brightwhite' +set -g mode-style 'bg=blue,fg=brightwhite' # ------------------------------------------------------------------- # Key Bindings -- 2.45.2