From d9aff489786d44089a327d7bec242d722387fb3b Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Mon, 20 Jul 2020 15:38:20 +0200 Subject: Update tmux config for newer versions --- .config/tmux/conf | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to '.config') diff --git a/.config/tmux/conf b/.config/tmux/conf index 7477176..2107a28 100644 --- a/.config/tmux/conf +++ b/.config/tmux/conf @@ -38,8 +38,8 @@ set -g visual-activity off set -g status-position top # recolor the messagebar/commandprompt -set -g message-fg colour110 -set -g message-bg colour233 +set -g message-style fg=colour110 +set -g message-style bg=colour233 # set the statusbar styles set -g window-status-format "#[fg=colour7]#I" @@ -58,9 +58,9 @@ set -g status-right-length 70 set -g status-bg "colour8" -set -wg window-status-bell-fg "default" -set -wg window-status-bell-bg "default" -set -wg window-status-bell-attr "bold" +set -wg window-status-bell-style fg=default +set -wg window-status-bell-style bg=default +set -wg window-status-bell-style bold # start counting at 1 instead of 0 set -g base-index 1 @@ -72,14 +72,14 @@ set -g set-titles on set -g set-titles-string "#T ยป #{pane_current_command}" # pane border coloring -set -g pane-border-fg colour234 -set -g pane-border-bg default -set -g pane-active-border-fg colour110 -set -g pane-active-border-bg default +set -g pane-border-style fg=colour234 +set -g pane-border-style bg=default +set -g pane-active-border-style fg=colour110 +set -g pane-active-border-style bg=default # splitting up panes and windows bind | split-window -h -bind \ split-window -v +bind '\' split-window -v bind m command-prompt -p "merge with:" "join-pane -t '%%'" bind b break-pane -d bind - command-prompt -p "swap with:" "swap-window -t '%%'" -- cgit v1.1