generated from foambubble/foam-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemanspeaks.github.io.code-workspace
More file actions
74 lines (72 loc) · 2.08 KB
/
emanspeaks.github.io.code-workspace
File metadata and controls
74 lines (72 loc) · 2.08 KB
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
65
66
67
68
69
70
71
72
73
74
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.autoSave": "onFocusChange",
// "editor.minimap.enabled": false,
"editor.wrappingIndent": "indent",
// "editor.overviewRulerBorder": false,
// "editor.lineHeight": 24,
"git.enableSmartCommit": true,
"git.postCommitCommand": "sync",
"files.exclude": {
"_site/**": true,
"quartz_repo/.github/workflows/**": true,
"quartz/**": true
},
"files.insertFinalNewline": true,
// "markdown.styles": ["custom-tag-style.css"]
"[markdown]": {
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
}
},
"foam.edit.linkReferenceDefinitions": "off",
// "foam.edit.linkReferenceDefinitions": "withoutExtensions",
"foam.files.ignore": [
"readme.md",
"quartz/**/*",
"quartz_repo/**/*",
"private/chatgpt/**/*"
],
"foam.files.newNotePath": "currentDir",
"foam.completion.useAlias": "whenPathDiffersFromTitle",
// "foam.openDailyNote.directory": "content/journal",
"foam.openDailyNote.onStartup": true,
"foam.preview.embedNoteType": "content-inline",
// "foam.openDailyNote.titleFormat": ""
},
"extensions": {
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
// Foam's own extension
"foam.foam-vscode",
// Tons of markdown goodies (lists, tables of content, so much more)
"yzhang.markdown-all-in-one",
// "mushan.vscode-paste-image"
"bierner.markdown-yaml-preamble",
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-scientific-terms",
"streetsidesoftware.code-spell-checker-win32",
"ltex-plus.vscode-ltex-plus",
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
}