Skip to repository content23 lines · 681 B · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T04:49:14.943Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
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]
23