forked from pure-fish/pure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
103 lines (93 loc) · 2.39 KB
/
mkdocs.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
site_name: "Pure.fish Documentation"
site_description: " Pretty, minimal and fast Fish 🐟 prompt"
site_author: "Édouard Lopez"
docs_dir: docs/
repo_name: "pure-fish/pure"
repo_url: "https://github.com/pure-fish/pure"
nav:
- Home: index.md
theme:
name: "material"
include_sidebar: true
features:
- content.action.edit
- content.code.copy
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant
- navigation.instant.progress
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.suggest
- search.highlight
logo: ./assets/favicon.png
favicon: ./assets/favicon.png
icon:
repo: fontawesome/brands/github
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/light-bulb-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: purple
toggle:
icon: material/brightness-2
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- toc:
permalink: true
toc_depth: 3
extra:
social:
- icon: fontawesome/brands/mastodon
link: https://piaille.fr/@edouard_lopez
- icon: fontawesome/brands/twitter
link: https://twitter.com/edouard_lopez
- icon: fontawesome/brands/github
link: https://github.com/pure-fish/pure/
extra_css:
- stylesheets/extra.css
plugins:
- search
- awesome-pages
- include-markdown
- git-authors