From 8d3f4eea2b424bb5e5edf0703a3377855ad9e359 Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Fri, 22 Nov 2024 08:02:53 -0500 Subject: [PATCH] tmux: almost there --- tmux/tmux.conf | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index b4f7557..ba722a9 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -14,7 +14,7 @@ set -g base-index 1 # Start windows at 1 set -g pane-base-index 1 # Start panes at 1 set -g renumber-windows on # Renumber dynamically #=============================================================================== -# Colors +# Colors & Styling #=============================================================================== # Theme Colors - More found in themes/ directory source -F "#{d:current_file}/themes/catppuccin-frappe.tmux" @@ -24,8 +24,11 @@ set -g status-style "fg=#{@thm_lavender} bg=#{@thm_bg}" set -g window-status-style "bg=#{@thm_surface_0} fg=#{@thm_lavender}" set -g window-status-current-style "fg=#{@thm_surface_0} bg=#{@thm_lavender}" # Panes -set -g pane-border-style "fg=#{@thm_bg}" -set -g pane-active-border-style "fg=#{@thm_lavender}" +set -g pane-border-style "fg=#{@thm_bg} bg=terminal" +set -g pane-active-border-style "fg=#{@thm_lavender} bg=terminal" +set -g pane-border-lines "double" +set -g pane-border-indicators "arrows" +set -g pane-border-status "top" # Command Line set -g message-style "fg=#{@thm_red} bg=#{@thm_bg} bright" # Menus @@ -34,7 +37,7 @@ set -g menu-selected-style "fg=#{@thm_lavender} bg=#{@thm_bg}" # Clock set -g clock-mode-colour "fg=#{@thm_lavender}" # Modes -set -g mode-style "fg=#{@thm_lavender}" +set -g mode-style "fg=#{@thm_lavender} bg=terminal" #=============================================================================== # Status Line #===============================================================================