Skip to repository content22 lines · 966 B · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T05:20:45.168Z 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 = "Go"
2grammar = "go"
3path_suffixes = ["go"]
4modeline_aliases = ["golang"]
5line_comments = ["// "]
6first_line_pattern = '^//.*\bgo run\b'
7autoclose_before = ";:.,=}])>"
8brackets = [
9 { start = "{", end = "}", close = true, newline = true },
10 { start = "[", end = "]", close = true, newline = true },
11 { start = "(", end = ")", close = true, newline = true },
12 { start = "\"", end = "\"", close = true, newline = false, not_in = ["comment", "string"] },
13 { start = "'", end = "'", close = true, newline = false, not_in = ["comment", "string"] },
14 { start = "`", end = "`", close = true, newline = false, not_in = ["comment", "string"] },
15 { start = "/*", end = " */", close = true, newline = false, not_in = ["comment", "string"] },
16]
17tab_size = 4
18hard_tabs = true
19debuggers = ["Delve"]
20block_comment = { start = "/*", prefix = "", end = "*/", tab_size = 1 }
21documentation_comment = { start = "/*", prefix = "* ", end = "*/", tab_size = 1 }
22