From 862488f597f48f0cd13ae64ce7df01323388f107 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 5 Jun 2025 22:25:25 -0700 Subject: [PATCH] Disable C-hjkl navigator mappings to avoid nano and other shortcut collisions --- .config/tmux/tmux.conf | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 31b3653..61199ad 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -1,3 +1,6 @@ +# Allow cursor passthrough +set -g allow-passthrough on + # Custom Prefix set -g prefix C-space bind-key C-space send-prefix @@ -65,10 +68,10 @@ set -g @open-S 'https://search.brave.com/search?q=' # Integrate with nvim navigation set -g @plugin 'christoomey/vim-tmux-navigator' -set -g @vim_navigator_mapping_left "C-Left C-h" -set -g @vim_navigator_mapping_right "C-Right C-l" -set -g @vim_navigator_mapping_up "C-Up C-k" -set -g @vim_navigator_mapping_down "C-Down C-j" +set -g @vim_navigator_mapping_left "C-Left" # C-h" +set -g @vim_navigator_mapping_right "C-Right" # C-l" +set -g @vim_navigator_mapping_up "C-Up" # C-k" +set -g @vim_navigator_mapping_down "C-Down" # C-j" # Load Plugins run '~/.tmux/plugins/tpm/tpm'