Disable C-hjkl navigator mappings to avoid nano and other shortcut collisions

This commit is contained in:
Daniel McKnight 2025-06-05 22:25:25 -07:00
parent 83b9e1c719
commit 862488f597

View file

@ -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'