commit 3f95f9992fd14f0dfa8624bd0ef8d43e959f3b04 (patch)
parent 8b326f61547116d143ccc0f5eb79a1c82d3403e8
Author: Alex Karle <alex@alexkarle.com>
Date: Tue, 8 Mar 2022 00:08:46 -0500
tmux: Use "heavy" border-lines
This just helps distinguish tmux splits vs nvim splits!
Diffstat:
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/.tmux.conf b/.tmux.conf
@@ -50,13 +50,14 @@ set-option -g base-index 1
set-option -g renumber-windows on
# Use plan9 rio(1) inpired colors!
-set-option -g status-style bg=#EAFFEA,fg=#000000
+set-option -g status-style bg=#EAFFFF,fg=#000000
set-option -g pane-active-border-style fg=#8888cc
-set-option -g message-command-style bg=#EAFFFF,fg=#000000
-set-option -g message-style bg=#EAFFFF,fg=#000000
+set-option -g message-command-style bg=#EAFFEA,fg=#000000
+set-option -g message-style bg=#EAFFEA,fg=#000000
set-option -g mode-style bg=#EEEE9E,fg=#000000
set-option -g copy-mode-match-style bg=#EEEE9E,fg=#000000
set-option -g copy-mode-mark-style bg=#EEEE9E,fg=#000000
set-option -g copy-mode-current-match-style bg=#6aa7a8,fg=#000000
+set-option -g pane-border-lines heavy
if-shell "test -e ~/.tmux.conf.local" "source-file ~/.tmux.conf.local"