27 lines
724 B
JSON
27 lines
724 B
JSON
/* VSCode 项目配置 */
|
|
{
|
|
"r.rpath.linux": ".conda/bin/R",
|
|
"r.libPaths": [
|
|
".conda/bin/R/library"
|
|
],
|
|
"r.rterm.linux": "${workspaceFolder}/.conda/bin/R",
|
|
"r.rterm.option": [
|
|
"--no-save",
|
|
"--no-restore"
|
|
],
|
|
"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",
|
|
"terminal.integrated.defaultProfile.linux": "R Terminal",
|
|
} |