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