dotfiles/.tmux.conf
Trysdyn Black ed5e5150d6 Push base16 theme changes
- Switch to a base16 builder wrapper I wrote myself
- Switch small details on a bunch of templates
- Switch to a QVP based color scheme I wrote myself

This should form the most rational default for colors going forward.
2021-04-04 00:09:46 -07:00

42 lines
1.1 KiB
Bash

# Enable 256-color
set -g default-terminal "tmux-256color"
# Renumber things when a window is closed
set-option -g renumber-windows on
# Add truecolor support (tmux info | grep Tc)
set-option -ga terminal-overrides ",xterm-256color:Tc"
# %%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%%