quarto setup

This commit is contained in:
Daniel Winkler 2026-01-31 17:57:30 +11:00
commit 898a5434d0
3 changed files with 12 additions and 18 deletions

View file

@ -1,13 +1,7 @@
{ {
"Chunk": { "Chunk": {
"R": {
"prefix": "_r", "prefix": "_r",
"body": [ "body": ["```{r}", "$1", "```"],
"```{r}",
"$1",
"```"
],
"description": "R code block" "description": "R code block"
} }
}
} }

View file

@ -1,13 +1,7 @@
{ {
"Chunk": { "Chunk": {
"R": {
"prefix": "_r", "prefix": "_r",
"body": [ "body": ["```{r}", "$1", "```"],
"```{r}",
"$1",
"```"
],
"description": "R code block" "description": "R code block"
} }
}
} }

View file

@ -0,0 +1,6 @@
{
"Function": {
"prefix": "fn",
"body": "$1 <- function($2){\n$0\n}"
}
}