44 lines
1.1 KiB
Bash
44 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 %%
|
|
# COLOUR (base16)
|
|
|
|
# default statusbar colors
|
|
set-option -g status-style "fg=#918f88,bg=#242422"
|
|
|
|
# default window title colors
|
|
set-window-option -g window-status-style "fg=#918f88,bg=default"
|
|
|
|
# active window title colors
|
|
set-window-option -g window-status-current-style "fg=#ffffb6,bg=default"
|
|
|
|
# pane border
|
|
set-option -g pane-border-style "fg=#242422"
|
|
set-option -g pane-active-border-style "fg=#401040"
|
|
|
|
# message text
|
|
set-option -g message-style "fg=#b5b3aa,bg=#242422"
|
|
|
|
# pane number display
|
|
set-option -g display-panes-active-colour "#a8ff60"
|
|
set-option -g display-panes-colour "#ffffb6"
|
|
|
|
# clock
|
|
set-window-option -g clock-mode-colour "#a8ff60"
|
|
|
|
# copy mode highligh
|
|
set-window-option -g mode-style "fg=#918f88,bg=#401040"
|
|
|
|
# bell
|
|
set-window-option -g window-status-bell-style "fg=#242422,bg=#ff6c60"
|
|
|
|
# %%base16_template_end%%
|