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
|
#meta
This page contains some configuration overrides for SilverBullet. A list of configs and their documentation [[!silverbullet.md/SETTINGS|can be found here]].
To update the [[!silverbullet.md/Libraries|libraries]] specified below, run {[Libraries: Update]}
Some settings might need a {[System: Reload]}
```yaml
indexPage: "[[index]]"
libraries:
- import: "[[!silverbullet.md/Library/Core/*]]"
shortcuts:
- command: "{[Open Command Palette]}"
key: "Cmd-x"
# Necessary to make Cmd+left/right work on macOS:
- command: "{[Navigate: Back in History]}"
key: "Ctrl-Cmd-ArrowLeft"
- command: "{[Navigate: Forward in History]}"
key: "Ctrl-Cmd-ArrowRight"
- command: "{[Text: Marker]}"
key: ""
```
See [[!silverbullet.md/Space Style]] for details on theming:
```space-style
html {
/* Changes to the default theme */
/* Such as the accent color */
--ui-accent-color: #464cfc;
}
#sb-main .cm-editor {
font-size: 16px;
}
html {
/* Uncomment the next line to set the editor font to Courier */
--editor-font: "Go Mono" !important;
/* Uncomment the next line to set the editor width to 1400px */
/* --editor-width: 1400px !important; */
}
```
|