diff options
Diffstat (limited to 'tmux')
| -rw-r--r-- | tmux/tmux.rocky.conf | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/tmux/tmux.rocky.conf b/tmux/tmux.rocky.conf index 5bc22db..2681c8c 100644 --- a/tmux/tmux.rocky.conf +++ b/tmux/tmux.rocky.conf @@ -1,11 +1,29 @@ # Rocky VM tmux overrides # Use C-g as prefix (nested tmux: earth outer=C-b, rocky inner=C-g) -# Remove default C-b prefix +# ── Prefix ────────────────────────────────────────────────────────────── unbind C-b - -# Set new prefix to C-g set -g prefix C-g - -# Send C-g through when double-tapped (like C-b b on default) bind C-g send-prefix + +# ── Drastic color scheme so you know you're inside the ROCKY tmux ──────── +# Earth (outer) = magenta active border + white-on-purple status +# Rocky (inner) = bright red active border + black-on-bright-green status + +set -g pane-active-border-style 'fg=brightred,bold' +set -g pane-border-style 'fg=colour8' + +set -g status-style 'bg=brightgreen,fg=black,bold' +set -g status-left ' [ROCKY] #[bg=black,fg=brightgreen] #S #[default] ' +set -g status-left-length 30 + +set -g window-status-current-style 'bg=black,fg=brightgreen,bold' +set -g window-status-style 'bg=brightgreen,fg=black' + +# Disable hexai status theme on rocky (not installed / not relevant) +set -g status-right '#[fg=colour8]| %H:%M ' +set -g status-right-length 30 + +# ── Visual bell ───────────────────────────────────────────────────────── +set -g visual-bell off +set -g bell-action any |
