From a52f9ead7be706a88cd95087340ea1ba0708e618 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Thu, 1 Apr 2021 21:37:09 -0700 Subject: [PATCH] Add tmux.conf for the hell of it --- .tmux.conf | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..0b47021 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,44 @@ +# 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%%