Add tmux support

This commit is contained in:
Zam Kokott
2026-01-27 13:28:20 +00:00
parent 42bc2960a5
commit 206ab83ea9
3 changed files with 35 additions and 19 deletions

15
lua/plugins/tmux.lua Normal file
View File

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