-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdendron.code-workspace
64 lines (64 loc) · 2.39 KB
/
dendron.code-workspace
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
{
"folders": [
/* IMPORTANT:
* Only relative paths of Dendron note folders, where `root.md` files are, should be added to `dendron.code-workspace`.
* Adding non-Dendron folders will cause Dendron failing to start.
* Dendron indexes vaults defined in `dendron.yml` automatically even the folders aren't included in Dendron workspace.
* Vaults not included in this workspace will not be discoverable by VSCode global search.
* If you want to manage vaults manually, it's recommended to add personal vaults only.
*/
{
"path": "notes",
"name": "dendron.obsidian"
}
],
"settings": {
/* Dendron default settings */
"dendron.rootDir": ".",
"files.autoSave": "onFocusChange",
"pasteImage.path": "${currentFileDir}/assets/images",
/* IMPORTANT:
* The prefix "/" in image paths, which means the absolute path "root", is necessary for Dendron publishing.
* If this vault is not intended to be published, or needs to be compatible with Obsidian,
* the prefix should be removed from Markdown links to use relative paths instead.
*/
"pasteImage.prefix": "/",
"markdown-preview-enhanced.enableWikiLinkSyntax": true,
"markdown-preview-enhanced.wikiLinkFileExtension": ".md",
"editor.snippetSuggestions": "inline",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggest.showSnippets": true,
"editor.tabCompletion": "on",
"dendron.enableSelfContainedVaultWorkspace": true,
/* VSCode Git settings */
// Detect $GIT_DIR of the main repository automatically
"git.openRepositoryInParentFolders": "always",
// Activate Dendron Tree-View at startup
"auto-run-command.rules": [
{
"condition": "always",
"command": "workbench.view.extension.dendron-view",
"message": "Activate Dendron TreeView"
}
]
},
"extensions": {
"recommendations": [
"dendron.dendron",
"dendron.dendron-paste-image",
"dendron.dendron-markdown-shortcuts",
"redhat.vscode-yaml",
"webplan-pro.dendron-keybindings",
"dendron.adjust-heading-level",
"gabrielgrinberg.auto-run-command"
],
"unwantedRecommendations": [
"dendron.dendron-markdown-links",
"dendron.dendron-markdown-notes",
"dendron.dendron-markdown-preview-enhanced",
"shd101wyy.markdown-preview-enhanced",
"kortina.vscode-markdown-notes",
"mushan.vscode-paste-image"
]
}
}