forked from lewagon/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
123 lines (123 loc) · 4.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"[python]": {
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.tabSize": 4,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.python",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"editor.codeActionsOnSave": {
"source.organizeImport": true
}
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.renderControlCharacters": true,
"editor.rulers": [
80,
120
],
"editor.showFoldingControls": "always",
"editor.snippetSuggestions": "top",
"editor.tabSize": 4,
"editor.detectIndentation": true,
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.minimap.enabled": true,
"editor.multiCursorModifier": "alt",
"editor.insertSpaces": true,
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": false,
// Controls if suggestions should be accepted 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions.
"editor.acceptSuggestionOnEnter": "on",
"editor.fontFamily": "Jetbrains Mono",
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "Jetbrains Mono",
"editor.trimAutoWhitespace": true,
"editor.useTabStops": true,
"editor.fontSize": 12,
"editor.scrollBeyondLastLine": true,
"editorWidget.background": "#636980",
"explorer.confirmDelete": false,
"workbench.iconTheme": "eq-material-theme-icons",
"files.exclude":
{
".asset-cache": true,
".bundle": true,
".ipynb_checkpoints": true,
".pytest_cache": true,
".sass-cache": true,
".svn": true,
"**/.DS_Store": true,
"**/.egg-info": true,
"**/.git": true,
"build": true,
"coverage": true,
"dist": true,
"log": true,
"node_modules": true,
"public/packs": true,
"tmp": true
},
"files.hotExit": "off",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/audits/**": true,
"**/coverage/**": true,
"**/log/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/vendor/**": true
},
"git.enabled": false,
"notebook.diff.ignoreMetadata": true,
"notebook.lineNumbers": "on",
"notebook.markup.fontSize": 13,
"python.defaultInterpreterPath": "~/.pyenv/shims/python",
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"python.formatting.provider": "black",
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "basic",
"python.linting.enabled": false,
"python.linting.flake8Enabled": false,
"python.linting.pylintEnabled": false,
"python.terminal.activateEnvironment": false,
"telemetry.telemetryLevel": "off",
"window.restoreWindows": "none",
"window.restoreFullscreen": true,
"window.newWindowDimensions": "maximized",
"workbench.editor.enablePreview": true,
"workbench.settings.editor": "json",
"workbench.settings.openDefaultSettings": true,
"workbench.settings.useSplitJSON": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.panel.defaultLocation": "bottom",
"security.workspace.trust.untrustedFiles": "open",
"notebook.cellFocusIndicator": "border",
"jupyter.askForKernelRestart": false,
"workbench.editor.untitled.hint": "hidden",
"explorer.confirmDragAndDrop": false,
"azureFunctions.showPythonVenvWarning": false,
"tabnine.experimentalAutoImports": true,
"github.copilot.enable": {
"*": false,
"yaml": false,
"plaintext": true,
"markdown": false,
"python": false
},
"editor.inlineSuggest.enabled": true,
"git.autofetch": true,
"azureFunctions.showProjectWarning": true,
"workbench.colorTheme": "Dracula",
"window.zoomLevel": 1,
"disable-copilot-comment-completions.active": true,
"terminal.integrated.defaultProfile.osx": "zsh",
"editor.accessibilitySupport": "off",
"editor.renderWhitespace": "none"
}