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