23 lines
871 B
Bash
23 lines
871 B
Bash
# Ensure 24-bit TrueColor pass-through
|
|
set -g default-terminal "tmux-256color"
|
|
set -ag terminal-overrides ",xterm-256color:RGB"
|
|
set -g mouse on
|
|
|
|
# Powerline Status Bar Styling
|
|
set -g status-interval 2
|
|
set -g status-justify left
|
|
set -g status-style "bg=#1e1e2e,fg=#cdd6f4"
|
|
|
|
# Left Status (Session Name with Powerline solid cap)
|
|
set -g status-left-length 40
|
|
set -g status-left "#[bg=#89b4fa,fg=#11111b,bold] #S #[bg=#1e1e2e,fg=#89b4fa,nobold] "
|
|
|
|
# Window Tab Styling
|
|
set -g window-status-format "#[fg=#6c7086]#I: #W #[fg=#45475a]"
|
|
set -g window-status-current-format "#[bg=#fab387,fg=#11111b,bold] #I: #W #[bg=#1e1e2e,fg=#fab387,nobold]"
|
|
|
|
# Right Status (Host and Time with inverted Powerline wedges)
|
|
set -g status-right-length 80
|
|
set -g status-right "#[fg=#313244]#[bg=#313244,fg=#cdd6f4] %Y-%m-%d %H:%M #[fg=#a6e3a1]#[bg=#a6e3a1,fg=#11111b,bold] #h "
|
|
|