config.toml

 1name = "GLSL"
 2grammar = "glsl"
 3path_suffixes = [
 4    # Traditional rasterization pipeline shaders
 5    "vert", "frag", "tesc", "tese", "geom",
 6    # Compute shaders
 7    "comp",
 8    # Mesh pipeline shaders
 9    "task", "mesh",
10    # Ray tracing pipeline shaders
11    "rgen", "rint", "rahit", "rchit", "rmiss", "rcall",
12    # Other
13    "glsl"
14    ]
15first_line_pattern = '^#version \d+'
16line_comments = ["// "]
17block_comment = { start = "/* ", prefix = "* ", end = "*/", tab_size = 1 }
18brackets = [
19    { start = "{", end = "}", close = true, newline = true },
20    { start = "[", end = "]", close = true, newline = true },
21    { start = "(", end = ")", close = true, newline = true },
22]