diff --git a/.tmux.conf b/.tmux.conf index 7282045..ed3f0f2 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -44,7 +44,7 @@ bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iqE bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-j) || tmux select-pane -D" bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-k) || tmux select-pane -U" bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys C-l) || tmux select-pane -R" -bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys 'C-\\') || tmux select-pane -l" +bind -n C-\\ run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)vim$' && tmux send-keys 'C-\\') || tmux select-pane -l" # scrollback buffer size increase set -g history-limit 100000 @@ -62,21 +62,21 @@ set -g status-bg black set -g status-left "#[fg=green]#S #[fg=yellow]#I #[fg=cyan]#P" set -g status-right "#[fg=cyan]%A, %b %d #[fg=yellow]|#[fg=cyan]%l:%M %p" -setw -g window-status-bell-attr default -setw -g window-status-bell-fg red -setw -g window-status-activity-attr bold +setw -g window-status-bell-style fg=red +setw -g window-status-activity-style bold setw -g window-status-format "#[fg=cyan]• #[fg=white]#I#[fg=cyan] #[fg=white]#W" setw -g window-status-current-format "#[fg=red]▶ #[fg=white]#I#[fg=red,bold] #[fg=white]#W" -set -g pane-border-fg colour238 -set -g pane-border-bg black -set -g pane-active-border-fg white -set -g pane-active-border-bg black +set -g pane-border-style fg=colour238 +set -g pane-border-style bg=black +set -g pane-active-border-style fg=white +set -g pane-active-border-style bg=black +#set -g pane-active-border bg=black -set -g message-fg white -set -g message-bg black -set -g message-attr bright +set -g message-style fg=white +set -g message-style bg=black +set -g message-style bright # ——— Cosmetics ———————————————————————————————————————————————————— if-shell '[[ -e ~/.tmux.conf.local ]]' 'source-file ~/.tmux.conf.local'