garden/.vscode/settings.json

23 lines
583 B
JSON
Raw Normal View History

2020-06-20 01:24:45 +00:00
{
"editor.minimap.enabled": false,
"editor.wrappingIndent": "indent",
"editor.overviewRulerBorder": false,
"editor.lineHeight": 24,
2020-10-31 18:58:52 +00:00
"workbench.colorTheme": "Nord",
2020-06-24 23:20:38 +00:00
"[markdown]": {
"editor.quickSuggestions": true
},
"git.enableSmartCommit": true,
2020-08-01 16:07:42 +00:00
"git.postCommitCommand": "sync",
2020-11-01 17:10:21 +00:00
"files.eol": "\n",
2020-08-01 16:07:42 +00:00
"files.exclude": {
"**/node_modules": true
},
"files.watcherExclude": {
2020-11-04 09:08:04 +00:00
"**/node_modules": true,
"**/target": true
2020-08-01 16:07:42 +00:00
},
"vscodeMarkdownNotes.noteCompletionConvention": "noExtension",
"vscodeMarkdownNotes.slugifyMethod": "github-slugger"
2020-06-20 01:24:45 +00:00
}