1

Better options for last bracket

This commit is contained in:
Alex Yatskov 2025-01-18 20:49:21 -08:00
parent 3d3f9bfcdf
commit 1e3513c5e5

View File

@ -4,16 +4,13 @@ local options_current = {
brace_last_indent = false, brace_last_indent = false,
brace_last_wrap = true, brace_last_wrap = true,
brace_pad = false, brace_pad = false,
comma_last = false, comma_last = {['{'] = true, ['['] = false},
comma_prefix = false, comma_prefix = false,
comma_prefix_indent = false, comma_prefix_indent = false,
}, },
go = { go = {
comma_last = true, comma_last = true,
}, },
lua = {
comma_last = true,
},
} }
local function setup(opt) local function setup(opt)