1
0
Files
R-within-CondaEnv/.vscode/settings.json
2025-08-20 17:11:49 +08:00

31 lines
898 B
JSON

/* VSCode */
{
"terminal.integrated.env.linux": {
"R_HOME": "${workspaceFolder}/.conda/lib/R",
},
"r.rpath.linux": ".conda/bin/R",
"r.rterm.linux": "${workspaceFolder}/.conda/bin/radian",
"r.rterm.option": [
"--ask-save"
],
"r.debugger.commandLineArgs": [],
"r.debugger.checkVersion": "recommended",
"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
},
"files.eol": "\n",
"editor.tabSize": 2,
"editor.detectIndentation": false,
"remote.autoForwardPorts": false,
// "terminal.integrated.defaultProfile.linux": "R Terminal", // 终端默认开启 R终端
}