forked from mkjmdski/.dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
78 lines (78 loc) · 2.31 KB
/
settings.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
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
{
"[python]": {
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.formatOnSave": true
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "full"
},
"bracket-pair-colorizer-2.forceUniqueOpeningColor": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.cursorStyle": "block-outline",
"editor.largeFileOptimizations": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "on",
"editor.wordWrap": "on",
"editor.matchBrackets": "always",
"editor.fontSize": 17,
"explorer.confirmDelete": false,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/dump/**": true,
"**/img/**": true,
"**/var/cache/**": true
},
"python.autoComplete.addBrackets": true,
"python.formatting.provider": "black",
"window.closeWhenEmpty": true,
"window.restoreFullscreen": true,
"window.restoreWindows": "all",
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"diffEditor.maxComputationTime": 0,
"python.languageServer": "Pylance",
"jupyter.addGotoCodeLenses": false,
"jupyter.allowImportFromNotebook": false,
"jupyter.allowInput": false,
"jupyter.allowLiveShare": false,
"jupyter.askForLargeDataFrames": false,
"jupyter.collapseCellInputCodeByDefault": false,
"jupyter.colorizeInputBox": false,
"jupyter.debugJustMyCode": false,
"jupyter.decorateCells": false,
"jupyter.enableAutoMoveToNextCell": false,
"jupyter.enableCellCodeLens": false,
"jupyter.enablePlotViewer": false,
"python.analysis.completeFunctionParens": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"markdownlint.focusMode": true,
"markdownlint.config": {
"MD024": false,
"MD025": false,
"MD026": false,
"MD033": false,
"MD041": false
},
"[terraform]": {
"editor.defaultFormatter": "hashicorp.terraform",
"editor.formatOnSave": true
},
"cSpell.language": "en,pl",
"cSpell.enabled": false,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active"
}