silverbullet/website/SETTINGS.md

36 lines
1.0 KiB
Markdown
Raw Normal View History

2023-12-19 23:18:33 +08:00
This page contains settings for configuring SilverBullet and its Plugs. Changing any of these in most cases will go into effect immediately, except `indexPage` and `customStyles` which require a reload.
2022-10-12 17:47:13 +08:00
```yaml
2023-02-28 18:13:24 +08:00
# Initial page to load when launching SB
indexPage: "[[SilverBullet]]"
2023-02-28 18:13:24 +08:00
2023-08-28 21:52:39 +08:00
# Load custom CSS styles from the following page, can also be an array
customStyles: "[[STYLES]]"
2023-07-02 20:48:27 +08:00
2023-12-22 20:22:25 +08:00
# Template settings
2023-02-28 18:13:24 +08:00
quickNotePrefix: "📥 "
dailyNotePrefix: "📅 "
dailyNoteTemplate: "[[template/page/Daily Note]]"
2023-02-28 18:13:24 +08:00
weeklyNotePrefix: "🗓️ "
weeklyNoteTemplate: "[[template/page/Weekly Note]]"
2023-02-28 18:13:24 +08:00
weeklyNoteMonday: false
2023-12-22 20:22:25 +08:00
# Keyboard shortcut overrides take presedence over built-in shortcuts
keyboardShortcuts:
# Using the command-link syntax
- command: "{[Stats: Show]}"
# Mac-specific keyboard
mac: "Cmd-s"
# Key binding for Windows/Linux (and Mac if not defined)
key: "Ctrl-s"
- command: "Navigate: Center Cursor"
key: "Alt-x"
2023-02-28 18:13:24 +08:00
2023-05-29 15:53:49 +08:00
# Defines files to ignore in a format compatible with .gitignore
spaceIgnore: |
dist
largefolder
*.mp4
2023-12-22 20:22:25 +08:00
2022-10-12 17:47:13 +08:00
```