config.toml
1name = "Nix"
2grammar = "nix"
3path_suffixes = ["nix"]
4line_comments = ["# "]
5block_comment = ["/* ", " */"]
6autoclose_before = ";:.,=}])>` \n\t\""
7brackets = [
8 { start = "{", end = "}", close = true, newline = true },
9 { start = "[", end = "]", close = true, newline = true },
10 { start = "(", end = ")", close = true, newline = true },
11 { start = "<", end = ">", close = true, newline = true },
12]