-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_settings.json
34 lines (34 loc) · 1.32 KB
/
admin_settings.json
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
33
34
{
"redhat.telemetry.enabled": false,
"security.workspace.trust.enabled": false,
"python.condaPath": "/opt/continuum/anaconda/bin/conda",
"python.defaultInterpreterPath": "/opt/continuum/anaconda/bin/python",
"python.disableInstallationCheck": true,
"python.dataScience.askForKernelRestart": false,
"python.terminal.activateEnvironment": false,
"git.ignoreLegacyWarning": true,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false,
"extensions.ignoreRecommendations": true,
"terminal.integrated.inheritEnv": false,
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash",
"args": ["--init-file", "/tools/vscode/activate.sh"]
}
},
"workbench.startupEditor": "none",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"_comments": [
"The file ~/.vscode/settings.json (where you are likely reading",
"this) contains VSCode settings that you may have modified using the",
"VSCode Settings panel. It also contains a number of settings that",
"AE5 has hardcoded to ensure that VSCode operates correctly within",
"its unique environment. The file /tools/vscode/admin_settings.json",
"contains those overrides (including this comment!)"
]
}