Created
July 8, 2025 14:12
-
-
Save irq0/1788c23b340c97dab08362cd08d6d469 to your computer and use it in GitHub Desktop.
tmux.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -g status-bg colour253 | |
# ??? | |
#set -g window-status-activity-attr bold | |
#set -g pane-border-fg colour245 | |
#set -g pane-active-border-fg colour39 | |
#set -g message-fg colour16 | |
#set -g message-bg colour221 | |
#set -g message-attr bold | |
set -g set-titles on | |
# Custom status bar | |
set -g status-left-length 32 | |
set -g status-right-length 150 | |
set -g status-interval 5 | |
set -g status-left '#[fg=color16,bg=color254,bold] #S #[fg=colour16,bg=colour254,bold] #h #[fg=colour16,bg=colour253,nobold] ' | |
set -g status-right '#[fg=colour16,bg=colour254,bold] #T' | |
set -g window-status-format "#[fg=colour16,bg=colour254,nobold] #I #W " | |
set -g window-status-current-format "#[fg=colour16,bg=colour202,noreverse,bold] #I #W " | |
set -g default-terminal "screen-256color" | |
set -g set-titles-string "TMUX[#S] #W #T" | |
# Activity | |
setw -g monitor-activity on | |
set -g visual-activity off | |
set-option -g prefix C-g | |
unbind-key C-b | |
bind-key C-g send-prefix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment