This commit is contained in:
Marco D'Agostini 2020-07-27 14:28:48 -05:00
commit 1cff7215c4
2 changed files with 20 additions and 0 deletions

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

@ -0,0 +1,8 @@
{
"autoSnippet.snippets": [
{
"pattern": "**/*.md",
"snippet": "note"
}
]
}

12
.vscode/template.code-snippets vendored Normal file
View File

@ -0,0 +1,12 @@
{
"note": {
"scope": "markdown",
"prefix": "note",
"body": [
"# ${TM_FILENAME_BASE}",
"",
""
],
"description": "Set title"
}
}