Skip to content

Commit 818f936

Browse files
committed
Upgrade the container with customizations
1 parent 6cc95a6 commit 818f936

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/.devcontainer/devcontainer.json

+28
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,33 @@
1212
"installRMarkdown": true,
1313
"vscodeRSupport": "full"
1414
}
15+
},
16+
"customizations": {
17+
"vscode": {
18+
// Ensure VS Code extensions for R are present
19+
"extensions": [
20+
// R Extensions
21+
"rdebugger.r-debugger",
22+
"reditorsupport.r",
23+
// Quarto
24+
"quarto.quarto",
25+
// LLM
26+
"GitHub.copilot"
27+
]
28+
},
29+
// Customize R settings
30+
"settings": {
31+
"r.rterm.linux": "/usr/local/bin/radian",
32+
"r.bracketedPaste": true,
33+
"r.plot.useHttpgd": true,
34+
"[r]": {
35+
"editor.wordSeparators": "`~!@#%$^&*()-=+[{]}\\|;:'\",<>/?"
36+
}
37+
}
38+
},
39+
// Enable pak using system package manager
40+
// https://github.com/rocker-org/devcontainer-features/blob/main/src/r-rig/README.md#install-r-packages-via-pak
41+
"remoteEnv": {
42+
"PKG_SYSREQS": "true"
1543
}
1644
}

0 commit comments

Comments
 (0)