Skip to repository content22 lines · 1.0 KB · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T05:18:50.511Z 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 = "C"
2grammar = "c"
3path_suffixes = ["c"]
4line_comments = ["// "]
5decrease_indent_patterns = [
6 { pattern = "^\\s*\\{.*\\}?\\s*$", valid_after = ["if", "for", "while", "do", "switch", "else"] },
7 { pattern = "^\\s*else\\b", valid_after = ["if"] }
8]
9autoclose_before = ";:.,=}])>"
10brackets = [
11 { start = "{", end = "}", close = true, newline = true },
12 { start = "[", end = "]", close = true, newline = true },
13 { start = "(", end = ")", close = true, newline = true },
14 { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
15 { start = "`", end = "`", close = false, newline = false, not_in = ["string"] },
16 { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
17 { start = "/*", end = " */", close = true, newline = false, not_in = ["string", "comment"] },
18]
19debuggers = ["CodeLLDB", "GDB"]
20block_comment = { start = "/*", prefix = "", end = "*/", tab_size = 1 }
21documentation_comment = { start = "/*", prefix = "* ", end = "*/", tab_size = 1 }
22