-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkspace.code-workspace
More file actions
53 lines (53 loc) · 1.85 KB
/
Copy pathworkspace.code-workspace
File metadata and controls
53 lines (53 loc) · 1.85 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
{
"folders": [],
"settings": {
"python.formatting.provider": "black",
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=100",
"--ignore=E231" // ignore whitespace after period
],
"python.formatting.blackArgs": [
"--line-length=100"
],
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Material Theme Darker High Contrast",
"window.zoomLevel": 0,
"zenMode.hideLineNumbers": false,
"zenMode.hideStatusBar": false,
"zenMode.hideTabs": false,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.lineNumbers": "relative",
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "block",
"editor.fontFamily": "'Iosevka SS08 Medium'",
"editor.fontSize": 15,
"editor.fontLigatures": true,
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.snippetSuggestions": "top",
"editor.formatOnSave": true,
"editor.formatOnSaveTimeout": 3000,
"vim.foldfix": true,
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"k"
],
"after": [
"<Esc>"
]
}
],
"terminal.integrated.fontFamily": "Consolas, 'Courier New', monospace",
"terminal.integrated.fontSize": 13,
"terminal.integrated.rendererType": "canvas",
"gitlens.currentLine.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"terminal.integrated.inheritEnv": false,
"workbench.startupEditor": "newUntitledFile",
}
}