From dacb2178b897059a33415cef60475339a2ac802e Mon Sep 17 00:00:00 2001 From: Aly Date: Tue, 23 Nov 2021 20:00:28 -0800 Subject: [PATCH] Update template files --- .vscode/extensions.json | 17 ++++------------- .vscode/settings.json | 20 +++++++++++++------- 2 files changed, 17 insertions(+), 20 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 55baa44..7b74b17 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -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", ] } diff --git a/.vscode/settings.json b/.vscode/settings.json index 5da698d..9709fc7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -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", }