Skip to repository content23 lines · 1.3 KB · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T06:33:53.050Z 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 = "Rust"
2grammar = "rust"
3path_suffixes = ["rs"]
4modeline_aliases = ["rs", "rustic"]
5line_comments = ["// ", "/// ", "//! "]
6autoclose_before = ";:.,=}])>"
7brackets = [
8 { start = "{", end = "}", close = true, newline = true },
9 { start = "r#\"", end = "\"#", close = true, newline = true, not_in = ["string", "comment"] },
10 { start = "r##\"", end = "\"##", close = true, newline = true, not_in = ["string", "comment"] },
11 { start = "r###\"", end = "\"###", close = true, newline = true, not_in = ["string", "comment"] },
12 { start = "[", end = "]", close = true, newline = true },
13 { start = "(", end = ")", close = true, newline = true },
14 { start = "<", end = ">", close = false, newline = true, not_in = ["string", "comment"] },
15 { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
16 { start = "`", end = "`", close = false, newline = false, not_in = ["string"] },
17 { start = "/*", end = " */", close = true, newline = false, not_in = ["string", "comment"] },
18]
19collapsed_placeholder = " /* ... */ "
20debuggers = ["CodeLLDB", "GDB"]
21block_comment = { start = "/*", prefix = "* ", end = "*/", tab_size = 1 }
22documentation_comment = { start = "/*", prefix = "* ", end = "*/", tab_size = 1 }
23