-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
50 lines (47 loc) · 1.49 KB
/
settings.json
File metadata and controls
50 lines (47 loc) · 1.49 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
{
// Editor Settings
"editor.fontSize": 16,
"terminal.integrated.fontSize": 15,
//"workbench.iconTheme": "vscode-icons",
"workbench.iconTheme": "material-icon-theme",
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"files.hotExit": "onExit",
"explorer.openEditors.visible": 0,
"terminal.integrated.fontFamily": "monospace",
//TERMINAL ON WINDOWS
"terminal.integrated.shell.windows":"C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.external.windowsExec": "C:\\Program Files\\Git\\bin\\bash.exe",
//Emmet Settings
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"vue-html": "html",
"plaintext": "jade"
},
// Python Settings
"python.pythonPath": "/usr/bin/python3.7",
"python.formatting.provider": "autopep8",
"python.globalModuleInstallation": true,
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.autoComplete.preloadModules": [
"numpy",
"pandas",
"matplotlib",
"pygame",
],
// Git-Lens Settings
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true,
"suppressResultsExplorerNotice": true
},
"[python]": {
},
/*"code-runner.executorMap":{
"python": "/usr/bin/python3.7"
},*/
}