31 lines
898 B
JSON
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终端
|
|
} |