This is how I configured my TMux
The default TMux configuration misses two points I relly want:
- I need to be notified when I switch pane. More precisely: I switch pane with "Ctrl-b arrow", but sometimes I type it foo fast and it is not effective. So I need to know when it succeds (so I also know when it fails)
- I want more padding on pane name. It is too narrow for me. I need more space on the left and right side of the text!
So, the configuration I made has the feature to blink when I switch pane, and put some right and left padding on pane names:
# Enable focus events set-option -g focus-events on # Make the pane blink on focus set-hook -g pane-focus-in 'select-pane -P bg=colour247; run-shell "sleep 0.1"; select-pane -P bg=default;' set -g window-status-current-style "bg=grey,fg=black" set-option -g status-style "bg=black,fg=grey" set -g window-status-format ' #I:#W ' set -g window-status-current-format ' #I:#W ' set -g message-style "fg=black,bg=white" set -g status-left ' #[bold][#{session_name}]#[nobold] '