style(treesj.lua): fix indentation and align key-value pairs for better readability

feat(treesj.lua): add max_join_length option to tsj.setup for configuring maximum join length
feat(treesj.lua): add silent and noremap options to opts variable for better key mapping control
This commit is contained in:
David Ibia
2024-03-17 15:02:45 +01:00
parent 41fb4776df
commit 5a617aeaff

View File

@@ -1,10 +1,11 @@
local tsj = require("treesj")
tsj.setup({
use_default_keymaps = false,
use_default_keymaps = false,
max_join_length = 400,
})
local opts = {}
local opts = { silent = true, noremap = true }
opts.desc = "Toggle Treesitter Join"