Disable C-hjkl navigator mappings to avoid nano and other shortcut collisions
This commit is contained in:
parent
83b9e1c719
commit
862488f597
1 changed files with 7 additions and 4 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
# Allow cursor passthrough
|
||||||
|
set -g allow-passthrough on
|
||||||
|
|
||||||
# Custom Prefix
|
# Custom Prefix
|
||||||
set -g prefix C-space
|
set -g prefix C-space
|
||||||
bind-key C-space send-prefix
|
bind-key C-space send-prefix
|
||||||
|
@ -65,10 +68,10 @@ set -g @open-S 'https://search.brave.com/search?q='
|
||||||
|
|
||||||
# Integrate with nvim navigation
|
# Integrate with nvim navigation
|
||||||
set -g @plugin 'christoomey/vim-tmux-navigator'
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||||
set -g @vim_navigator_mapping_left "C-Left C-h"
|
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_right "C-Right" # C-l"
|
||||||
set -g @vim_navigator_mapping_up "C-Up C-k"
|
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_down "C-Down" # C-j"
|
||||||
|
|
||||||
# Load Plugins
|
# Load Plugins
|
||||||
run '~/.tmux/plugins/tpm/tpm'
|
run '~/.tmux/plugins/tpm/tpm'
|
||||||
|
|
Loading…
Reference in a new issue