The bmannconsulting.com website
1{ 2 "editor.minimap.enabled": false, 3 "editor.overviewRulerBorder": false, 4 "editor.lineHeight": 24, 5 "[markdown]": { 6 "editor.quickSuggestions": { 7 "comments": "on", 8 "strings": "on", 9 "other": "on" 10 } 11 }, 12 13 "git.enableSmartCommit": true, 14 "git.postCommitCommand": "sync", 15 16 "files.watcherExclude": { 17 "**/node_modules": true, 18 "_site/*": true 19 }, 20 21 "files.exclude": { 22 "_site/*": true, 23 ".jekyll-cache/*": true, 24 "**/node_modules": true 25 }, 26 27 "liquid.format": true, 28 29 "foam.openDailyNote.directory": "_posts/journal/", 30 "foam.openDailyNote.filenameFormat": "yyyy-mm-dd-'journal'", 31 "foam.openDailyNote.titleFormat": "---\ntitle: mmm d, yyyy\n---", 32 "foam.openDailyNote.fileExtension": "md", 33 34 "foam.edit.linkReferenceDefinitions": "withoutExtensions", 35 36 "vscodeMarkdownNotes.noteCompletionConvention": "noExtension", 37 "vscodeMarkdownNotes.newNoteDirectory": "_notes", 38 "vscodeMarkdownNotes.newNoteTemplate": "---\ntitle: ${noteName}\n---\n", 39 40 "workbench.colorTheme": "Tomorrow Night", 41 "editor.tokenColorCustomizations": { 42 "[Tomorrow Night]": { 43 "textMateRules": [ 44 { 45 "scope": "text.markdown.notes.wiki-link", 46 "settings": { 47 "foreground": "#d4b91c" 48 } 49 }, 50 { 51 "scope": "support.function.text.markdown.notes.wiki-link.title", 52 "settings": { 53 "foreground": "#d8cd8f" 54 } 55 }, 56 { 57 "scope": "string.other.link.title.markdown", 58 "settings": { 59 "foreground": "#3d3bac" 60 } 61 }, 62 { 63 "scope": "markup.quote.markdown", 64 "settings": { 65 "foreground": "#666" 66 } 67 }, 68 { 69 "scope": "markup.inline.raw", 70 "settings": { 71 "foreground": "#f19999" 72 } 73 }, 74 { 75 "scope": "markup.italic.markdown", 76 "settings": { 77 "fontStyle": "italic", 78 } 79 }, 80 { 81 "scope": "punctuation.definition.italic.markdown", 82 "settings": { 83 "foreground": "#555" 84 } 85 }, 86 { 87 "scope": "markup.bold.markdown", 88 "settings": { 89 "fontStyle": "bold", 90 "foreground": "#efefef" 91 } 92 }, 93 { 94 "scope": "punctuation.definition.bold.markdown", 95 "settings": { 96 "foreground": "#555" 97 } 98 }, 99 ] 100 } 101 } 102 103}