dotfiles/.tmux.conf

45 lines
1.2 KiB
Bash

# Allow true color regardless of terminal
set-option -ag terminal-features ",*:RGB"
# Enable passthru
set-option -g allow-passthrough all
# Renumber things when a window is closed
set-option -g renumber-windows on
# Interit term title from active tmux pane title
set-option -g allow-rename on
set-option -g set-titles on
set-option -g set-titles-string "#W"
# %%base16_template: tmux##default %%
# default statusbar colors
set-option -g status-style "fg=#b0b0b0,bg=#202020"
# default window title colors
set-window-option -g window-status-style "fg=#b0b0b0,bg=default"
# active window title colors
set-window-option -g window-status-current-style "fg=#f7c61d,bg=default"
# pane border
set-option -g pane-border-style "fg=#202020"
set-option -g pane-active-border-style "fg=#311647"
# message text
set-option -g message-style "fg=#f0f0f0,bg=#202020"
# pane number display
set-option -g display-panes-active-colour "#8dc73f"
set-option -g display-panes-colour "#f7c61d"
# clock
set-window-option -g clock-mode-colour "#8dc73f"
# copy mode highligh
set-window-option -g mode-style "fg=#b0b0b0,bg=#311647"
# bell
set-window-option -g window-status-bell-style "fg=#202020,bg=#ed008c"
# %%base16_template_end%%