Skip to repository content38 lines · 1.5 KB · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T05:18:09.736Z 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 = "Markdown"
2grammar = "markdown"
3path_suffixes = ["md", "mdx", "mdwn", "mdc", "markdown", "MD"]
4modeline_aliases = ["md"]
5completion_query_characters = ["-"]
6block_comment = { start = "<!--", prefix = "", end = "-->", tab_size = 1 }
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 = true },
13 { start = "\"", end = "\"", close = false, newline = false },
14 { start = "'", end = "'", close = false, newline = false },
15 { start = "`", end = "`", close = false, newline = false },
16 { start = "*", end = "*", close = false, newline = false, surround = true },
17 { start = "~", end = "~", close = false, newline = false, surround = true },
18]
19rewrap_prefixes = [
20 "[-*+]\\s+",
21 "\\d+\\.\\s+",
22 ">\\s*",
23 "[-*+]\\s+\\[[\\sx]\\]\\s+"
24]
25unordered_list = ["- ", "* ", "+ "]
26ordered_list = [{ pattern = "(\\d+)\\. ", format = "{1}. " }]
27task_list = { prefixes = ["- [ ] ", "- [x] ", "- [X] "], continuation = "- [ ] " }
28
29auto_indent_on_paste = false
30auto_indent_using_last_non_empty_line = false
31tab_size = 2
32decrease_indent_patterns = [
33 { pattern = "^\\s*-", valid_after = ["list_item"] },
34 { pattern = "^\\s*\\d", valid_after = ["list_item"] },
35 { pattern = "^\\s*", valid_after = ["list_item"] },
36]
37prettier_parser_name = "markdown"
38