config.toml

 1name = "Lua"
 2grammar = "lua"
 3path_suffixes = ["lua"]
 4line_comments = ["-- "]
 5autoclose_before = ",]}"
 6brackets = [
 7    { start = "{", end = "}", close = true, newline = true },
 8    { start = "[", end = "]", close = true, newline = true },
 9    { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
10]
11collapsed_placeholder = "--[ ... ]--"