Added onboarding and major changes to template (#28)
* removed gitlens * adjusted various settings * added foam onboarding to template * removed prettier extension * added setting to match OS color scheme * a couple of minor changes re todos and readme * added spellright to list of recommended extensions, and added to getting started guide * added reference to LTeX in spell checking doc * Added logo to readme * fixed link to LTeX extension * styling logo in readme * more style experiments
This commit is contained in:
11
.vscode/extensions.json
vendored
11
.vscode/extensions.json
vendored
@ -5,12 +5,6 @@
|
||||
// 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",
|
||||
|
||||
@ -18,6 +12,9 @@
|
||||
"kortina.vscode-markdown-notes",
|
||||
|
||||
// Image-pasting for markdown
|
||||
"mushan.vscode-paste-image"
|
||||
"mushan.vscode-paste-image",
|
||||
|
||||
// Spell checking for text, markdown and latex
|
||||
"ban.spellright",
|
||||
]
|
||||
}
|
||||
|
||||
17
.vscode/settings.json
vendored
17
.vscode/settings.json
vendored
@ -1,5 +1,4 @@
|
||||
{
|
||||
"prettier.singleQuote": false,
|
||||
"editor.minimap.enabled": false,
|
||||
"editor.wrappingIndent": "indent",
|
||||
"editor.overviewRulerBorder": false,
|
||||
@ -7,8 +6,6 @@
|
||||
"[markdown]": {
|
||||
"editor.quickSuggestions": true
|
||||
},
|
||||
"git.enableSmartCommit": true,
|
||||
"git.postCommitCommand": "sync",
|
||||
"files.defaultLanguage": "markdown",
|
||||
"files.exclude": {
|
||||
"**/node_modules": true
|
||||
@ -16,11 +13,17 @@
|
||||
"files.watcherExclude": {
|
||||
"**/node_modules": true
|
||||
},
|
||||
"vscodeMarkdownNotes.noteCompletionConvention": "noExtension",
|
||||
"vscodeMarkdownNotes.slugifyMethod": "github-slugger",
|
||||
"foam.edit.linkReferenceDefinitions": "withExtensions",
|
||||
"foam.openDailyNote.directory": "journal",
|
||||
"foam.openDailyNote.titleFormat": "fullDate",
|
||||
"pasteImage.path": "${currentFileDir}/images/${currentFileNameWithoutExt}",
|
||||
"markdown.preview.breaks": true
|
||||
"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",
|
||||
"window.autoDetectColorScheme": true,
|
||||
}
|
||||
|
||||
1
.vscode/spellright.dict
vendored
Normal file
1
.vscode/spellright.dict
vendored
Normal file
@ -0,0 +1 @@
|
||||
wikilink
|
||||
Reference in New Issue
Block a user