config.toml
1name = "Elm"
2grammar = "elm"
3path_suffixes = ["elm"]
4line_comments = ["-- "]
5block_comment = ["{- ", " -}"]
6brackets = [
7 { start = "{", end = "}", close = true, newline = true },
8 { start = "[", end = "]", close = true, newline = true },
9 { start = "(", end = ")", close = true, newline = true },
10 { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
11 { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
12]