From b22e96e133e2ce8d440db5f69dcf497d4ca4e019 Mon Sep 17 00:00:00 2001 From: Scott Carroll Date: Sat, 26 Apr 2025 10:40:10 +0100 Subject: [PATCH] Add tmux options for nvim --- base/.tmux.conf | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/base/.tmux.conf b/base/.tmux.conf index 2c5886c..1ce5502 100644 --- a/base/.tmux.conf +++ b/base/.tmux.conf @@ -15,5 +15,12 @@ bind-key -n F4 next-window set -s set-clipboard on if-shell -b '[ "$(echo "$TMUX_VERSION >= 3.3" | bc)" = 1 ]' { - set -g allow-passthrough on + set -g allow-passthrough on +} + +set-option -a terminal-features 'xterm-256color:RGB' +set-option -sg escape-time 10 + +if-shell -b '[ "$(echo "$TMUX_VERSION >= 1.9" | bc)" = 1 ]' { + set-option -g focus-events on }