mirror of
https://github.com/foambubble/foam-template.git
synced 2025-06-07 20:08:54 +00:00
* Change color theme auto detection to false This addresses https://github.com/foambubble/foam/issues/503 * Update settings.json
28 lines
910 B
JSON
28 lines
910 B
JSON
{
|
|
"editor.minimap.enabled": false,
|
|
"editor.wrappingIndent": "indent",
|
|
"editor.overviewRulerBorder": false,
|
|
"editor.lineHeight": 24,
|
|
"[markdown]": {
|
|
"editor.quickSuggestions": true
|
|
},
|
|
"files.defaultLanguage": "markdown",
|
|
"files.exclude": {
|
|
"**/node_modules": true
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/node_modules": true
|
|
},
|
|
"foam.edit.linkReferenceDefinitions": "withExtensions",
|
|
"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",
|
|
}
|