Skip to content

Commit

Permalink
Add VSCode config
Browse files Browse the repository at this point in the history
  • Loading branch information
berrueta committed Dec 25, 2023
1 parent 0455351 commit 687cf2b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ _site
.jekyll-cache
.jekyll-metadata
vendor

**/.DS_Store
24 changes: 24 additions & 0 deletions .vscode/blogpost.code-snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
// Place your berrueta.github.io workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
// Placeholders with the same ids are connected.
// Example:
"Blogpost": {
"scope": "markdown,md",
"prefix": "blogpost",
"body": [
"---",
"layout: post",
"title: \"\"",
"date: $CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE $CURRENT_HOUR:00:00 +1200",
"category: software",
"tags: a,b,c",
"---",
"",
],
"description": "New blogpost"
}
}

0 comments on commit 687cf2b

Please sign in to comment.