From 0ab0236ba2830325e6aa40113091ff516f693285 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Mon, 25 Aug 2025 02:12:16 +0500 Subject: [PATCH] remove status bar colortheme plugin, make YOUR OWN!!!\ --- .config/tmux/tmux.conf | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index fb523b7..72842cd 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -43,7 +43,6 @@ set -g @tpm_plugins ' \ tmux-plugins/tmux-sensible \ tmux-plugins/tmux-resurrect \ tmux-plugins/tmux-yank \ - Nybkox/tmux-kanagawa \ tmux-plugins/tmux-continuum \ ' @@ -52,14 +51,18 @@ set -g @continuum-save-interval '30' set -g @resurrect-processes 'false' -set -g @kanagawa-ignore-window-colors true +# border colours +set -g pane-border-style "fg=#282728" +set -g pane-active-border-style "fg=#938AA9" -set -g @kanagawa-plugins " " -set -g @kanagawa-show-battery false -set -g @kanagawa-day-month true -set -g @kanagawa-show-timezone false -set -g @kanagawa-time-format "%R" +# status bar +set-option -g status-style bg=default +set -g status-left '| #S | ' +set -g status-right '' +set -g status-left-length 500 +set -g window-status-format "#I:#W " +set -g window-status-current-format "#[fg=red]#I#[fg=default]:#W* " # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run '~/.config/tmux/plugins/tpm/tpm'