-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVSCode-Settings.json
More file actions
59 lines (59 loc) · 2.06 KB
/
VSCode-Settings.json
File metadata and controls
59 lines (59 loc) · 2.06 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"python.dataScience.sendSelectionToInteractiveWindow": true,
"window.zoomLevel": -1,
"terminal.integrated.shell.osx": "/bin/bash",
"workbench.settings.editor": "json",
"workbench.settings.openDefaultSettings": true,
"workbench.settings.useSplitJSON": true,
"python.pythonPath": "//anaconda3/bin/python",
"python.formatting.provider": "black",
// "python.formatting.autopep8Path": "autopep8",
// "python.formatting.provider": "autopep8",
"python.linting.enabled": true,
// grey used imports
// "python.linting.pylintEnabled": true,
// "python.linting.pylintArgs": [
// "--enable=W0614"
// ],
//
"editor.formatOnSave": true,
"code-runner.runInTerminal": true,
"code-runner.executorMap": {
"python": "$pythonPath -u $fullFileName",
},
"code-runner.clearPreviousOutput": true,
"code-runner.showExecutionMessage": true,
"code-runner.ignoreSelection": true,
"code-runner.saveFileBeforeRun": true,
"[plaintext]": {
"editor.quickSuggestions": false
},
"editor.quickSuggestionsDelay": 100,
"zenMode.centerLayout": false,
"zenMode.fullScreen": false,
"zenMode.hideLineNumbers": false,
"zenMode.hideTabs": false,
"editor.minimap.enabled": false,
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.inheritEnv": false,
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.jediEnabled": false,
"terminal.integrated.rendererType": "dom",
// "[html]": {
// "editor.defaultFormatter": "mohd-akram.vscode-html-format"
// },
"html.format.indentHandlebars": true,
"html.format.indentInnerHtml": true,
"[html]": {
"editor.defaultFormatter": "mohd-akram.vscode-html-format"
},
"workbench.colorTheme": "Predawn",
"workbench.iconTheme": "ayu",
// "[html]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
}