summaryrefslogtreecommitdiff
path: root/lua/plugins/tmux-navigation.lua
blob: 0ccab987759723d1d15bd7d31af4b3c656ae8c31 (plain)
1
2
3
4
5
6
7
8
9
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,
}