diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index c15387a..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - // See https://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - // Main markdown support - "yzhang.markdown-all-in-one", - - // Zettelkasten wiki-links, backlinks, etc. - "svsool.markdown-memo", - - // Graph view - // Disabled until https://github.com/tchayen/markdown-links/issues/28 is done - // "tchayen.markdown-links", - - // For expanding title in daily note - "gruntfuggly.auto-snippet", - - // Commands for bold, italic, etc. - "mdickin.markdown-shortcuts", - - // Goodies: - // - Checkboxes - "bierner.markdown-checkbox", - // - Footnote - "houkanshan.vscode-markdown-footnote", - - // Language - spell checker - "streetsidesoftware.code-spell-checker" - ] -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 5519e72..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - // Avoid having to explicitly save notes - "files.autoSave": "afterDelay", - - // Minimap is not useful for Markdown notes - "editor.minimap.enabled": false, - - // Generally note files are not opened in duplicate tabs. - // This also enables you to navigate to already open note in other split pane - "workbench.editor.revealIfOpen": true, - - // For those that use daily notes, via vscode-memo extension - "autoSnippet.snippets": [ - { - "pattern": "**/\\d{4}-\\d{2}-\\d{2}.md", - "snippet": "daily" - } - ] - - // If use Git, these might be interesting: - // "git.autofetch": true, - // "git.postCommitCommand": "push" -}