This repository has been archived on 2026-04-01. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nvim-config/lua/plugins/tmux.lua
2026-01-27 13:28:20 +00:00

16 lines
338 B
Lua

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
}