A neovim plugin allowing to easily switch between projects using TMUX.
Behind the scenes, this plugin uses the python hivemux package.
With Lazy
return {
"Muscaw/hivemux.nvim",
build = "pipx install hivemux",
dependencies = {
"nvim-telescope/telescope.nvim",
},
keys = {
{
"<leader>pp",
function()
require("hivemux").switch_project()
end,
{ noremap = true, desc = "list sessions" },
},
}
}If you already have hivemux installed locally, you can remove the build parameter.
To configure hivemux, please refer to the hivemux project's README.