config.toml

1name = "GLSL"
2path_suffixes = ["vert", "frag", "tesc", "tese", "geom", "comp"]
3line_comment = "// "
4block_comment = ["/* ", " */"]
5brackets = [
6    { start = "{", end = "}", close = true, newline = true },
7    { start = "[", end = "]", close = true, newline = true },
8    { start = "(", end = ")", close = true, newline = true },
9]