1
0
This commit is contained in:
Steven Hobs
2025-08-20 12:08:09 +08:00
commit ad8ef460d6
7 changed files with 133 additions and 0 deletions

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

@@ -0,0 +1,27 @@
/* VSCode */
{
"r.rpath.linux": "${workspaceFolder}/.conda/bin/R",
"r.rterm.linux": "${workspaceFolder}/.conda/bin/radian",
"r.rterm.option": [
"--no-save",
"--no-restore",
"--r-binary=${workspaceFolder}/.conda/bin/R"
],
"r.plot.useHttpgd": true,
"r.lsp.diagnostics": true,
"r.alwaysUseActiveTerminal": true,
"r.bracketedPaste": true,
"r.sessionWatcher": true,
"[r]": {
"editor.defaultFormatter": "REditorSupport.r",
"editor.formatOnSave": true
},
"[rmd]": {
"editor.defaultFormatter": "REditorSupport.r",
"editor.formatOnSave": true
},
// "terminal.integrated.defaultProfile.linux": "R Terminal", # 终端默认开启 R终端
"files.eol": "\n",
"editor.tabSize": 2,
"editor.detectIndentation": false
}