Update template files
This commit is contained in:
parent
f625d0a27e
commit
dacb2178b8
2 changed files with 17 additions and 20 deletions
17
.vscode/extensions.json
vendored
17
.vscode/extensions.json
vendored
|
@ -5,22 +5,13 @@
|
|||
// Foam's own extension
|
||||
"foam.foam-vscode",
|
||||
|
||||
// Prettier for auto formatting code
|
||||
"esbenp.prettier-vscode",
|
||||
|
||||
// GitLens for seeing version history inline
|
||||
"eamodio.gitlens",
|
||||
|
||||
// Tons of markdown goodies (lists, tables of content, so much more)
|
||||
"yzhang.markdown-all-in-one",
|
||||
|
||||
// [[wiki-links]], backlinking etc
|
||||
"kortina.vscode-markdown-notes",
|
||||
// Image-pasting for markdown
|
||||
"mushan.vscode-paste-image",
|
||||
|
||||
// Adds `show graph` command that displays graph of linked notes
|
||||
"tchayen.markdown-links",
|
||||
|
||||
// Understated grayscale theme (light and dark variants)
|
||||
"philipbe.theme-gray-matter"
|
||||
// Spell checking for text, markdown and latex
|
||||
"ban.spellright",
|
||||
]
|
||||
}
|
||||
|
|
20
.vscode/settings.json
vendored
20
.vscode/settings.json
vendored
|
@ -3,20 +3,26 @@
|
|||
"editor.wrappingIndent": "indent",
|
||||
"editor.overviewRulerBorder": false,
|
||||
"editor.lineHeight": 24,
|
||||
"workbench.colorTheme": "Nord",
|
||||
"[markdown]": {
|
||||
"editor.quickSuggestions": true
|
||||
},
|
||||
"git.enableSmartCommit": true,
|
||||
"git.postCommitCommand": "sync",
|
||||
"files.eol": "\n",
|
||||
"files.defaultLanguage": "markdown",
|
||||
"files.exclude": {
|
||||
"**/node_modules": true
|
||||
},
|
||||
"files.watcherExclude": {
|
||||
"**/node_modules": true,
|
||||
"**/target": true
|
||||
"**/node_modules": true
|
||||
},
|
||||
"foam.edit.linkReferenceDefinitions": "off",
|
||||
"foam.openDailyNote.directory": "journal",
|
||||
"foam.openDailyNote.titleFormat": "fullDate",
|
||||
"git.enableSmartCommit": true,
|
||||
"git.postCommitCommand": "sync",
|
||||
"markdown.preview.breaks": true,
|
||||
"pasteImage.path": "${projectRoot}/attachments",
|
||||
"pasteImage.showFilePathConfirmInputBox": true,
|
||||
"prettier.singleQuote": false,
|
||||
"spellright.notificationClass": "warning",
|
||||
"vscodeMarkdownNotes.noteCompletionConvention": "noExtension",
|
||||
"vscodeMarkdownNotes.slugifyMethod": "github-slugger"
|
||||
"vscodeMarkdownNotes.slugifyMethod": "github-slugger",
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue