-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
65 lines (65 loc) · 1.32 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
---
site_name: Ramblurr's Notes
theme:
name: material
custom_dir: overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep orange
toggle:
icon: material/weather-night
name: Switch to light mode
shortcuts:
next: 78 # n
previous: 80 # p
search: 83 # s
language: en
include_search_page: true
search_index_only: true
features:
- navigation.instant
- search.share
- search.highlight
- search.suggest
font:
text: Noto Sans
code: IMB Plex Mono
plugins:
- macros
- section-index
- search:
separator: '[\s\-\.]+'
prebuild_index: python
lang:
- en
- minify:
minify_html: true
#- roamlinks
markdown_extensions:
- admonition
- codehilite
- meta
- attr_list
- footnotes
- md_in_html
- pymdownx.details
- pymdownx.emoji
- pymdownx.highlight
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed
- pymdownx.tasklist
- toc:
permalink: true
extra:
repo_url: https://github.com/ramblurr/home-ops/
homeops_url: https://github.com/Ramblurr/home-ops/blob/main
...