Update template files

This commit is contained in:
Aly 2021-11-23 20:00:28 -08:00
parent f625d0a27e
commit dacb2178b8
2 changed files with 17 additions and 20 deletions

View File

@ -5,22 +5,13 @@
// Foam's own extension // Foam's own extension
"foam.foam-vscode", "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) // Tons of markdown goodies (lists, tables of content, so much more)
"yzhang.markdown-all-in-one", "yzhang.markdown-all-in-one",
// [[wiki-links]], backlinking etc // Image-pasting for markdown
"kortina.vscode-markdown-notes", "mushan.vscode-paste-image",
// Adds `show graph` command that displays graph of linked notes // Spell checking for text, markdown and latex
"tchayen.markdown-links", "ban.spellright",
// Understated grayscale theme (light and dark variants)
"philipbe.theme-gray-matter"
] ]
} }

20
.vscode/settings.json vendored
View File

@ -3,20 +3,26 @@
"editor.wrappingIndent": "indent", "editor.wrappingIndent": "indent",
"editor.overviewRulerBorder": false, "editor.overviewRulerBorder": false,
"editor.lineHeight": 24, "editor.lineHeight": 24,
"workbench.colorTheme": "Nord",
"[markdown]": { "[markdown]": {
"editor.quickSuggestions": true "editor.quickSuggestions": true
}, },
"git.enableSmartCommit": true, "files.defaultLanguage": "markdown",
"git.postCommitCommand": "sync",
"files.eol": "\n",
"files.exclude": { "files.exclude": {
"**/node_modules": true "**/node_modules": true
}, },
"files.watcherExclude": { "files.watcherExclude": {
"**/node_modules": true, "**/node_modules": true
"**/target": 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.noteCompletionConvention": "noExtension",
"vscodeMarkdownNotes.slugifyMethod": "github-slugger" "vscodeMarkdownNotes.slugifyMethod": "github-slugger",
} }