27 lines
777 B
JSON
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
|
|
} |