-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode_user_setting.json
35 lines (34 loc) · 1.13 KB
/
vscode_user_setting.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
35
{
"python.pythonPath": "/User/at/anaconda3/bin/python",
"workbench.colorCustomizations": {},
"editor.fontFamily": "'Consolas'",
"editor.fontSize": 16,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.idea": true,
"**/.vscode": true
},
"jupyter.appendResults": true,
"bracketPairColorizer.showBracketsInGutter": true,
"bracketPairColorizer.showHorizontalScopeLine": false,
"editor.wordWrap": "on",
"editor.wordWrapColumn": 110,
"python.linting.flake8Enabled": false,
"python.linting.pep8Enabled": false,
"python.linting.pylintArgs": [
"--ignore = E1101"
],
"terminal.integrated.fontSize": 15,
"terminal.integrated.fontFamily": "'Consolas'",
"workbench.startupEditor": "newUntitledFile",
"editor.matchBrackets": false,
"window.zoomLevel": -1,
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.folders.theme": "classic",
"material-icon-theme.folders.color": "#ff7043",
"workbench.colorTheme": "One Dark Pro"
}