-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.json
82 lines (82 loc) · 2.53 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
79
80
81
82
{
"security.workspace.trust.untrustedFiles": "open",
"[python]": {
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.formatOnSave": true,
"editor.formatOnType": true
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "full"
},
"window.restoreWindows": "none",
"files.hotExit": "off",
"bracket-pair-colorizer-2.forceUniqueOpeningColor": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"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.formatting.provider": "black",
"window.closeWhenEmpty": true,
"window.restoreFullscreen": true,
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"diffEditor.maxComputationTime": 0,
"python.languageServer": "Pylance",
"jupyter.askForLargeDataFrames": false,
"jupyter.debugJustMyCode": 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,
"MD022": false,
},
// "[terraform]": {
// "editor.defaultFormatter": "hashicorp.terraform",
// "editor.formatOnSave": true
// },
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"bracket-pair-colorizer-2.depreciation-notice": false,
"yaml.customTags": [
"!vault"
],
"jupyter.interactiveWindow.textEditor.autoMoveToNextCell": false,
"jupyter.interactiveWindow.codeLens.enable": false,
"jupyter.interactiveWindow.codeLens.enableGotoCell": false,
"jupyter.interactiveWindow.cellMarker.decorateCells": false,
"redhat.telemetry.enabled": false,
"explorer.confirmDragAndDrop": false,
"window.zoomLevel": 1,
"gitlens.codeLens.authors.command": false,
"python.defaultInterpreterPath": "/home/mlodzikos/.dotfiles/venv"
}