2023-12-30 08:58:53 +00:00
This page contains settings for configuring SilverBullet and its Plugs. Changing any of these will go into effect immediately in most cases except `indexPage` and `customStyles` , which require a reload.
2022-10-12 09:47:13 +00:00
2022-08-02 11:26:04 +00:00
```yaml
2024-01-20 18:16:07 +00:00
# Initial page to load when launching SB, can contain template variables
2023-08-17 18:27:05 +00:00
indexPage: "[[SilverBullet]]"
2023-02-28 10:13:24 +00:00
2023-08-28 13:52:39 +00:00
# Load custom CSS styles from the following page, can also be an array
2023-08-17 18:27:05 +00:00
customStyles: "[[STYLES]]"
2023-07-02 12:48:27 +00:00
2024-01-02 12:47:50 +00:00
# It is possible to override keyboard shortcuts and command priority
2023-12-27 07:14:57 +00:00
shortcuts:
2024-01-02 12:47:50 +00:00
- command: "{[Stats: Show]}" # Using the command link syntax here
mac: "Cmd-s" # Mac-specific keyboard shortcut
key: "Ctrl-s" # Windows/Linux specific keyboard shortcut
- command: "Navigate: Center Cursor" # But a command name is also supported
key: "Alt-x"
- command: "{[Upload: File]}"
priority: 1 # Make sure this appears at the top of the list in the command palette
2023-02-28 10:13:24 +00:00
2023-05-29 07:53:49 +00:00
# Defines files to ignore in a format compatible with .gitignore
spaceIgnore: |
dist
largefolder
*.mp4
2023-12-22 12:22:25 +00:00
2022-10-12 09:47:13 +00:00
```