config.toml
1name = "GLSL"
2grammar = "glsl"
3path_suffixes = ["vert", "frag", "tesc", "tese", "geom", "comp"]
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]