Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T05:56:53.854Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

config.toml

23 lines · 681 B · 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
Served at tenant.openagents/omega Member data and write actions are omitted.