-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.json
More file actions
32 lines (32 loc) · 1.35 KB
/
Copy pathsettings.json
File metadata and controls
32 lines (32 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
// Editor: Enable bracket pair colorization
"editor.bracketPairColorization.enabled": true,
// GitLens: Disable GitLens telemetry
"gitlens.telemetry.enabled": false,
// Liveshare: Prompt when receiving focus requests
"liveshare.focusBehavior": "prompt",
// Quarto: MathJax theme
"quarto.mathjax.theme": "dark",
// R: Treat`names.like.this` as one word for selection
"[r]": {
"editor.wordSeparators": "`~!@#%$^&*()-=+[{]}\\|;:'\",<>/?"
},
// R: Use active terminal for all commands
"r.alwaysUseActiveTerminal": true,
// R: Use bracketed paste mode when sending code to console (radian)
"r.bracketedPaste": true,
// R: R or radian path for macOS (Intel)
// "r.rterm.mac": "/usr/local/Caskroom/miniforge/base/envs/r/bin/radian",
// R: R or radian path for macOS (ARM)
"r.rterm.mac": "/opt/homebrew/Caskroom/miniforge/base/envs/r/bin/radian",
// R: Enable R session watcher (experimental)
"r.sessionWatcher": true,
// R: Remove hidden items when clearing R workspace
"r.workspaceViewer.removeHiddenItems": true,
// Telemetry: Disable Microsoft telemetry
"telemetry.telemetryLevel": "off",
// Terminal: Path to integrated shell on macOS
"terminal.integrated.automationShell.osx": "/bin/zsh",
// Workbench: Disable experiments
"workbench.enableExperiments": false
}