-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.code-workspace
54 lines (54 loc) · 1.57 KB
/
settings.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
{
"folders": [
{
"path": ".",
"name": "dendron.obsidian"
},
// {
// "path": "dependencies/github.com/USERNAME",
// "name": "remote vaults"
// },
// {
// "path": "dependencies/localhost",
// "name": "local vaults"
// },
],
"settings": {
"git.repositoryScanIgnoredFolders": [
"seeds",
"node_modules"
],
"auto-run-command.rules": [
{
"condition": "always",
"command": "workbench.view.scm",
"message": "Show Source Control"
}
],
"files.exclude": {
// Dendron
"**/notes/*.md": false,
"dependencies/": true,
"**/.dendron.*": true,
// Obsidian
".obsidian/plugins/**/{main.js,styles.css,manifest.json}": true,
".obsidian/plugins/**/{.*.json,*.log}": true,
".obsidian/{graph,workspace,workspace-mobile,global-search}.json": true,
".obsidian/themes/": true
}
},
"extensions": {
"recommendations": [
"oderwat.indent-rainbow",
"davidanson.vscode-markdownlint",
"huacnlee.autocorrect",
"yzhang.markdown-all-in-one",
"jebbs.markdown-extended",
"iiwenwen.markdown-footnote",
"takumii.markdowntable",
"cescript.markdown-formula",
"gruntfuggly.todo-tree",
"geezmolycos.vscode-hanzi-counter"
]
}
}