Update config for tmux 2.9 update

This commit is contained in:
Wojciech Kozlowski 2019-12-27 13:54:02 +01:00
parent bea87a88d5
commit 68e88e59ed

View File

@ -4,8 +4,8 @@
set -g status-justify centre set -g status-justify centre
# set the status bar # set the status bar
set -g status-left "" set -g status-left " "
set -g status-right "" set -g status-right " "
# Start windows and panes at 1, not 0 # Start windows and panes at 1, not 0
set -g base-index 1 set -g base-index 1
@ -29,27 +29,19 @@ bind-key b set-option status
# Colors ------------------------------------------ # Colors ------------------------------------------
# default statusbar colors # default statusbar colors
set -g status-fg "#eeeeee" set -g status-style bg="#005577",fg="#eeeeee"
set -g status-bg "#005577"
set -g status-attr default
# default window title colors # default window title colors
set-window-option -g window-status-fg "#002b36" set -g window-status-style bg=default,fg="#002b36"
set-window-option -g window-status-bg default
set-window-option -g window-status-attr default
# active window title colors # active window title colors
set-window-option -g window-status-current-fg "#eeeeee" set -g window-status-current-style bg=default,fg="#eeeeee"
set-window-option -g window-status-current-bg default
set-window-option -g window-status-current-attr default
# default pane border colors # default pane border colors
set -g pane-border-fg default set -g pane-border-style bg=default,fg=default
set -g pane-border-bg default
# active pane border colors # active pane border colors
set -g pane-active-border-fg "#005577" set -g pane-active-border-style bg=default,fg="#005577"
set -g pane-active-border-bg default
# Plugin manager ---------------------------------- # Plugin manager ----------------------------------