mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-03-28 18:34:46 +01:00
15 lines
254 B
Lua
15 lines
254 B
Lua
return {
|
|
-- improves splitting and joining blocks
|
|
"Wansmer/treesj",
|
|
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
|
keys = {
|
|
{
|
|
"<leader>m",
|
|
function()
|
|
require("treesj").toggle()
|
|
end,
|
|
},
|
|
},
|
|
opts = {},
|
|
}
|