config.toml

 1name = "TOML"
 2grammar = "toml"
 3path_suffixes = ["Cargo.lock", "toml", "Pipfile", "uv.lock"]
 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 = ["comment", "string"] },
10    { start = "'", end = "'", close = true, newline = false, not_in = ["comment", "string"] },
11]