-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathzensical.toml
More file actions
52 lines (45 loc) · 1.19 KB
/
Copy pathzensical.toml
File metadata and controls
52 lines (45 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[project]
site_name = "jup"
site_description = "Agent Skills Manager"
site_url = "https://andrader.github.io/jup/"
site_author = "Rubens Andrade"
copyright = "© 2025 Rubens Andrade"
repo_url = "https://github.com/andrader/jup"
repo_name = "andrader/jup"
nav = [
{ "Home" = "index.md" },
{ "Reference" = "reference.md" },
{ "Comparison with npx" = "jup-vs-npx-skills.md" }
]
[project.theme]
features = [
"navigation.sections",
"navigation.expand",
"content.code.copy",
"search.suggest",
"search.highlight",
"header.autohide",
"content.action.edit",
"content.action.view"
]
[project.theme.icon]
repo = "fontawesome/brands/github"
[[project.theme.palette]]
scheme = "default"
primary = "indigo"
accent = "indigo"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
primary = "indigo"
accent = "indigo"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"
[project.plugins.mkdocstrings.handlers.python]
inventories = ["https://docs.python.org/3/objects.inv"]
paths = ["src"]
[project.plugins.mkdocstrings.handlers.python.options]
docstring_style = "google"
inherited_members = true
show_source = true