From 0842439e34d35dca2515ba33b5c7156dc282ab82 Mon Sep 17 00:00:00 2001 From: Adi De Masi Date: Mon, 5 Jan 2026 10:56:34 +0100 Subject: [PATCH] fix tmux navigation --- lua/custom/plugins/nvim-tmux-navigation.lua | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/lua/custom/plugins/nvim-tmux-navigation.lua b/lua/custom/plugins/nvim-tmux-navigation.lua index 1a996eb2..26f48228 100644 --- a/lua/custom/plugins/nvim-tmux-navigation.lua +++ b/lua/custom/plugins/nvim-tmux-navigation.lua @@ -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 = "", - down = "", - up = "", - right = "", - last_active = "", - next = "", + left = '', + down = '', + up = '', + right = '', + last_active = '', + next = '', }, } end, } - -return plugins