Skip to content

Commit bad5bc5

Browse files
committed
add _quarto.yml and devcontainer.json
1 parent 9d4af16 commit bad5bc5

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// Config options: https://github.com/rocker-org/devcontainer-templates/tree/main/src/r-ver
2+
{
3+
"name": "R (rocker/r-ver base)",
4+
"image": "ghcr.io/rocker-org/devcontainer/r-ver:4.4",
5+
// Add software
6+
"features": {
7+
// Required to test with knitr
8+
// R package config: https://github.com/rocker-org/devcontainer-features/blob/main/src/r-rig/README.md
9+
"ghcr.io/rocker-org/devcontainer-features/r-rig:1": {
10+
"version": "none",
11+
"installRMarkdown": true,
12+
"installJupyterlab": true,
13+
"installRadian": true
14+
},
15+
// You may wish to switch prerelease to latest for stable development
16+
// Quarto configuration : https://github.com/rocker-org/devcontainer-features/blob/main/src/quarto-cli/README.md
17+
"ghcr.io/rocker-org/devcontainer-features/quarto-cli:1": {
18+
"installTinyTex": true,
19+
"version": "latest"
20+
}
21+
},
22+
"customizations": {
23+
"vscode": {
24+
"settings": {
25+
"r.rterm.linux": "/usr/local/bin/radian",
26+
"r.bracketedPaste": true,
27+
"r.plot.useHttpgd": true,
28+
"[r]": {
29+
"editor.wordSeparators": "`~!@#%$^&*()-=+[{]}\\|;:'\",<>/?"
30+
}
31+
},
32+
// Enable a development set of extensions for Lua and Quarto
33+
"extensions": ["quarto.quarto", "sumneko.lua", "GitHub.copilot"]
34+
}
35+
}
36+
}

_quarto.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
project:
2+
type: default

0 commit comments

Comments
 (0)