-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
98 lines (98 loc) · 2.95 KB
/
settings.json
File metadata and controls
98 lines (98 loc) · 2.95 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
//Terminal
"terminal.integrated.shell.windows": "C:\\Users\\jpeak\\AppData\\Local\\Programs\\Git\\bin\\sh.exe",
"terminal.integrated.fontFamily": "'SauceCodePro NF', 'Courier New', monospace",
"terminal.integrated.fontSize": 14,
"terminal.integrated.rendererType": "canvas",
// Editor
"editor.tabSize": 2,
"editor.fontFamily": "'SauceCodePro NF', 'Courier New', monospace",
"editor.fontSize": 14,
"explorer.confirmDelete": false,
"editor.renderWhitespace": "all",
"workbench.iconTheme": "eq-material-theme-icons-darker",
"workbench.colorTheme": "Material Theme Darker High Contrast",
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.formatOnSaveTimeout": 3000,
"editor.codeActionsOnSaveTimeout": 3000,
// Git
"git.confirmSync": false,
"git.autofetch": true,
// Python
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [],
"python.linting.pylintEnabled": false,
"python.linting.pylintUseMinimalCheckers": false,
"python.linting.pylintArgs": [
"--jobs=0"
],
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"120"
],
"python.formatting.autopep8Args": [
"--max-line-length=120"
],
"python.linting.mypyEnabled": true,
"python.insidersChannel": "weekly",
"python.jediEnabled": false,
"python.terminal.activateEnvironment": false,
"[python]": {
"editor.rulers": [
72,
79,
110
],
"editor.tabSize": 4,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
// Vim
"vim.enableNeovim": true,
"vim.statusBarColorControl": true,
"workbench.colorCustomizations": {
"statusBar.background": "#2a363c",
"statusBar.noFolderBackground": "#2a363c",
"statusBar.debuggingBackground": "#2a363c"
},
"vim.statusBarColors.visualline": "#3c322a",
"vim.statusBarColors.visualblock": "#3c322a",
"vim.statusBarColors.visual": "#3c322a",
"vim.statusBarColors.replace": "#3c2a2a",
"vim.statusBarColors.normal": "#323c2a",
"vim.statusBarColors.insert": "#2a363c",
"vim.insertModeKeyBindings": [
{
"before": [
";",
";"
],
"after": [
"<Esc>"
]
}
],
"vim.normalModeKeyBindings": [
{
"before": [
";"
],
"after": [
":"
]
}
],
"vim.foldfix": true,
"vim.useCtrlKeys": false,
"vim.easymotion": true,
"window.zoomLevel": 0,
}