mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-04-16 12:14:48 +02:00
17 lines
305 B
Lua
17 lines
305 B
Lua
return {
|
|
-- improves splitting and joining blocks
|
|
"Wansmer/treesj",
|
|
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
|
keys = {
|
|
{
|
|
"<leader>m",
|
|
function()
|
|
require("treesj").toggle()
|
|
end,
|
|
mode = "n",
|
|
desc = "Join/split block",
|
|
},
|
|
},
|
|
opts = {},
|
|
}
|