fix tmux navigation

This commit is contained in:
Adi De Masi 2026-01-05 10:56:34 +01:00
parent aeda582122
commit 0842439e34
1 changed files with 9 additions and 12 deletions

View File

@ -1,19 +1,16 @@
local plugins = {
"alexghergh/nvim-tmux-navigation",
lazy = false,
return {
'alexghergh/nvim-tmux-navigation',
config = function()
require("nvim-tmux-navigation").setup {
require('nvim-tmux-navigation').setup {
disable_when_zoomed = true, -- defaults to false
keybindings = {
left = "<C-h>",
down = "<C-j>",
up = "<C-k>",
right = "<C-l>",
last_active = "<C-\\>",
next = "<C-Space>",
left = '<C-h>',
down = '<C-j>',
up = '<C-k>',
right = '<C-l>',
last_active = '<C-\\>',
next = '<C-Space>',
},
}
end,
}
return plugins