R-with-Conda/.vscode/settings.json
2025-03-24 20:37:11 +08:00

27 lines
777 B
JSON

/* 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
}