Docs sync @ 9490aa2 Fixed typo (#54)

Updated .vscode dir, and added assets
This commit is contained in:
Riccardo
2023-10-25 11:42:02 +02:00
committed by GitHub
parent f4b87411d8
commit 1403a6dfe7
33 changed files with 147 additions and 37 deletions

4
.vscode/.vscode/custom-tag-style.css vendored Normal file
View File

@ -0,0 +1,4 @@
.foam-tag{
color:#ffffff;
background-color: #000000;
}

View File

@ -5,10 +5,10 @@
// Foam's own extension
"foam.foam-vscode",
// Tons of markdown goodies (lists, tables of content, so much more)
"yzhang.markdown-all-in-one",
// Prettier for auto formatting code
"esbenp.prettier-vscode",
// Image-pasting for markdown
"mushan.vscode-paste-image"
// Understated grayscale theme (light and dark variants)
"philipbe.theme-gray-matter"
]
}

8
.vscode/.vscode/keybindings.json vendored Normal file
View File

@ -0,0 +1,8 @@
// This file does not get automatically applied
// @TODO: Make it work or document how to copy to user keybindings
[
{
"key": "cmd+shift+n",
"command": "foam-vscode.create-note"
}
]

22
.vscode/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
"files.autoSave": "onFocusChange",
"editor.minimap.enabled": false,
"editor.wrappingIndent": "indent",
"editor.overviewRulerBorder": false,
"editor.lineHeight": 24,
"foam.edit.linkReferenceDefinitions": "withExtensions",
"[markdown]": {
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
}
},
"git.enableSmartCommit": true,
"git.postCommitCommand": "sync",
"files.exclude": {
"_site/**": true
},
"files.insertFinalNewline": true,
"markdown.styles": [".vscode/custom-tag-style.css"]
}

4
.vscode/foam.json vendored
View File

@ -1,4 +0,0 @@
{
"purpose": "this file exists to tell the foam-vscode plugin that it's currently in a foam workspace",
"future": "we may use this for custom configuration"
}

29
.vscode/settings.json vendored
View File

@ -1,29 +0,0 @@
{
"editor.minimap.enabled": false,
"editor.wrappingIndent": "indent",
"editor.overviewRulerBorder": false,
"editor.lineHeight": 24,
"[markdown]": {
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
}
},
"files.defaultLanguage": "markdown",
"files.exclude": {
"**/node_modules": true
},
"files.watcherExclude": {
"**/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,
}