diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 2c9ee95..1b94656 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -1,21 +1,18 @@ set -g set-titles on set -g set-titles-string "tmux.#S" -set-option -g status-bg black -set-option -g status-fg white +set-option -g status-style "bg=black,fg=white" +set-option -g window-status-current-style "fg=black,bg=red" -set-option -g window-status-current-bg white -set-option -g window-status-current-fg black - -set-option -g pane-border-fg black -set-option -g pane-active-border-fg white +set-option -g pane-border-style fg=black +set-option -g pane-active-border-style fg=white set-option -g monitor-activity off -set-option -g window-status-bell-attr bold -set-option -g window-status-activity-attr bold +set-option -g window-status-bell-style bold +set-option -g window-status-activity-style bold -bind r source-file ~/.tmux.conf +bind r source-file ~/.config/tmux/tmux.conf bind '"' split-window -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}"