commit 223cb61e2d9acbaef91ad35b1fe3288adfdb779e (patch)
parent 97faf55d75674c5a51777d2b433e601e07845bb7
Author: Alex Karle <alex@alexkarle.com>
Date: Sun, 27 Feb 2022 11:39:02 -0500
tmux: Source .tmux.conf.local, if it exists
This allows custom overrides on my work machine.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/.tmux.conf b/.tmux.conf
@@ -56,3 +56,5 @@ 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
+
+if-shell "test -e ~/.tmux.conf.local" "source-file ~/.tmux.conf.local"