diff --git a/private_dot_config/tmux/tmux.conf b/private_dot_config/tmux/tmux.conf index ba4d2f7..6d16b08 100644 --- a/private_dot_config/tmux/tmux.conf +++ b/private_dot_config/tmux/tmux.conf @@ -1,3 +1,18 @@ +set -g @black0 "#151515" +set -g @black1 "#1f1f1f" +set -g @black2 "#2e2e2e" +set -g @black3 "#424242" + +set -g @white0 "#e8e3e3" +set -g @white1 "#bbb6b6" + +set -g @red "#b66467" +set -g @yellow "#d9bc8c" +set -g @green "#8c977d" +set -g @aqua "#8aa6a2" +set -g @blue "#8da3b9" +set -g @purple "#a988b0" + # start with window 1 (instead of 0) set -g base-index 1 @@ -48,30 +63,31 @@ set -g bell-action none # modes setw -g clock-mode-colour green -setw -g mode-style 'fg=black bg=magenta bold' +setw -g mode-style 'fg=#{@black0} bg=#{@white0} bold' # panes -set -g pane-border-style 'fg=brightblack' -set -g pane-active-border-style 'fg=green' +set -g pane-border-style 'fg=#{@black2}' +set -g pane-active-border-style 'fg=#{@green}' # statusbar set -g status-position bottom set -g status-justify left -set -g status-style 'fg=magenta' +set -g status-style 'bg=#{@black0} fg=#{@white0}' -set -g status-left '#{?client_prefix,#[fg=magenta],#[fg=brightblack]}● ' +set -g status-left '#{?client_prefix,#[fg=#{@purple}],#[fg=#{@black2}]} ■ ' set -g status-left-length 10 -set -g status-right '' +set -g status-right-style 'fg=#{@black0} bg=#{@blue} bold' +set -g status-right ' #{pane_current_path} ' -setw -g window-status-current-style 'fg=black bg=red bold' -setw -g window-status-current-format '#[bg=terminal fg=green]#[bg=green fg=black]#I #W #F#[bg=terminal fg=green]#[bg=green fg=black]' +setw -g window-status-current-style 'fg=#{@black0} bg=#{@green} bold' +setw -g window-status-current-format ' #I #W #F ' -setw -g window-status-style 'fg=green' -setw -g window-status-separator '' -setw -g window-status-format ' #I #[fg=white]#W #[fg=blue]#F ' +setw -g window-status-style 'fg=#{@white1} bg=#{@black1}' +setw -g window-status-separator ' ' +setw -g window-status-format ' #I #W #F ' -setw -g window-status-bell-style 'fg=red bg=black bold' +setw -g window-status-bell-style 'fg=#{@red} bg=terminal bold' # messages -set -g message-style 'fg=yellow bg=terminal bold' +set -g message-style 'fg=#{@yellow} bg=terminal bold'