mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
10 lines
227 B
Lua
10 lines
227 B
Lua
-- Neovim plugin for splitting/joining blocks of code
|
|
-- https://github.com/Wansmer/treesj
|
|
return {
|
|
'Wansmer/treesj',
|
|
dependencies = { 'nvim-treesitter/nvim-treesitter' },
|
|
opts = {
|
|
use_default_keymaps = false,
|
|
},
|
|
}
|