feat: Add treesj

This commit is contained in:
punkfairie 2025-03-01 14:13:04 -08:00
parent aefd0e189e
commit a109fa82e2
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 11 additions and 0 deletions

View file

@ -195,6 +195,7 @@
rose-pine
diffview-nvim
nvim-emmet
treesj
];
};

10
lua/plugins/treesj.lua Normal file
View file

@ -0,0 +1,10 @@
return {
{
'Wansmer/treesj',
keys = { '<SPACE>m', '<SPACE>j', '<SPACE>s' },
dependencies = { 'nvim-treesitter/nvim-treesitter' },
opts = {
max_join_length = vim.o.textwidth,
},
},
}