summaryrefslogtreecommitdiff
path: root/lua/plugins/tmux-navigation.lua
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-02-08 12:06:48 +0100
committerNaz <ndpm13@ch-naseem.com>2025-02-08 12:06:48 +0100
commite11b004562d47af7fed6b337a05d829d1a7e3655 (patch)
treea6a8a239c46d99f7a2cc074680f34927cb2f87ce /lua/plugins/tmux-navigation.lua
parentbd7d932d30bac80ae50afa6349f0406332bc11d7 (diff)
✨feat: add alexghergh/nvim-tmux-navigation plugin
Diffstat (limited to 'lua/plugins/tmux-navigation.lua')
-rw-r--r--lua/plugins/tmux-navigation.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/plugins/tmux-navigation.lua b/lua/plugins/tmux-navigation.lua
new file mode 100644
index 0000000..0ccab98
--- /dev/null
+++ b/lua/plugins/tmux-navigation.lua
@@ -0,0 +1,10 @@
+return {
+ "alexghergh/nvim-tmux-navigation",
+ config = function()
+ local nvim_tmux_nav = require("nvim-tmux-navigation")
+
+ nvim_tmux_nav.setup({
+ disable_when_zoomed = true, -- defaults to false
+ })
+ end,
+}