aboutsummaryrefslogtreecommitdiff
path: root/.config/Code/User/settings.json
blob: 994d9d0242c2790993648574d4b6cda35a10e59a (plain)
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
{
    "[markdown]": {
        "editor.fontWeight": "normal"
    },
    "breadcrumbs.enabled": false,
    "chat.agent.maxRequests": 50,
    "editor.acceptSuggestionOnCommitCharacter": true,
    "editor.acceptSuggestionOnEnter": "on",
    "editor.bracketPairColorization.enabled": false,
    "editor.codeActionsOnSave": {},
    "editor.codeLens": false,
    "editor.colorDecorators": false,
    "editor.cursorBlinking": "solid",
    "editor.detectIndentation": true,
    "editor.dragAndDrop": false,
    "editor.find.addExtraSpaceOnTop": false,
    "editor.find.autoFindInSelection": "never",
    "editor.folding": false,
    "editor.fontFamily": "'Roboto Mono', 'monospace', monospace",
    "editor.fontLigatures": false,
    "editor.fontWeight": "normal",
    "editor.formatOnPaste": false,
    "editor.formatOnSave": false,
    "editor.formatOnType": false,
    "editor.glyphMargin": false,
    "editor.guides.bracketPairs": false,
    "editor.guides.bracketPairsHorizontal": false,
    "editor.guides.highlightActiveBracketPair": false,
    "editor.guides.indentation": false,
    "editor.hideCursorInOverviewRuler": true,
    "editor.hover.enabled": "on",
    "editor.inlayHints.enabled": "on",
    "editor.inlineSuggest.enabled": true,
    "editor.insertSpaces": true,
    "editor.lightbulb.enabled": "off",
    "editor.lineNumbers": "relative",
    "editor.linkedEditing": false,
    "editor.links": false,
    "editor.matchBrackets": "never",
    "editor.minimap.enabled": false,
    "editor.occurrencesHighlight": "off",
    "editor.overviewRulerBorder": false,
    "editor.parameterHints.enabled": true,
    "editor.quickSuggestions": {
        "other": "on",
        "comments": "off",
        "strings": "off"
    },
    "editor.renderControlCharacters": false,
    "editor.renderLineHighlight": "none",
    "editor.renderLineHighlightOnlyWhenFocus": false,
    "editor.renderWhitespace": "none",
    "editor.scrollbar.horizontal": "hidden",
    "editor.scrollbar.horizontalScrollbarSize": 0,
    "editor.scrollbar.vertical": "hidden",
    "editor.scrollbar.verticalScrollbarSize": 0,
    "editor.selectionHighlight": false,
    "editor.semanticTokenColorCustomizations": {
        "rules": {
            "*.bold": {
                "fontStyle": ""
            },
            "*.italic": {
                "fontStyle": ""
            },
            "*.underline": {
                "fontStyle": ""
            },
            "*.strikethrough": {
                "fontStyle": ""
            },
            "comment.bold": {
                "fontStyle": ""
            },
            "comment.italic": {
                "fontStyle": ""
            },
            "keyword.bold": {
                "fontStyle": ""
            },
            "keyword.italic": {
                "fontStyle": ""
            },
            "string.bold": {
                "fontStyle": ""
            },
            "string.italic": {
                "fontStyle": ""
            },
            "variable.bold": {
                "fontStyle": ""
            },
            "variable.italic": {
                "fontStyle": ""
            },
            "function.bold": {
                "fontStyle": ""
            },
            "function.italic": {
                "fontStyle": ""
            },
            "class.bold": {
                "fontStyle": ""
            },
            "class.italic": {
                "fontStyle": ""
            },
            "type.bold": {
                "fontStyle": ""
            },
            "type.italic": {
                "fontStyle": ""
            }
        }
    },
    "editor.showDeprecated": false,
    "editor.showUnused": false,
    "editor.smoothScrolling": false,
    "editor.stickyScroll.enabled": false,
    "editor.suggest.filterGraceful": true,
    "editor.suggest.insertMode": "replace",
    "editor.suggestOnTriggerCharacters": true,
    "editor.tabSize": 4,
    "editor.tokenColorCustomizations": {
        "textMateRules": [
            {
                "scope": [
                    "markup.bold",
                    "strong",
                    "punctuation.definition.bold"
                ],
                "settings": {
                    "fontStyle": ""
                }
            },
            {
                "scope": [
                    "markup.italic",
                    "emphasis",
                    "punctuation.definition.italic"
                ],
                "settings": {
                    "fontStyle": ""
                }
            }
        ]
    },
    "editor.wordBasedSuggestions": "matchingDocuments",
    "editor.wordWrap": "on",
    "explorer.compactFolders": false,
    "explorer.decorations.badges": true,
    "explorer.decorations.colors": false,
    "explorer.fileNesting.enabled": false,
    "extensions.autoCheckUpdates": false,
    "extensions.autoUpdate": false,
    "extensions.experimental.affinity": {
        "vscodevim.vim": 1
    },
    "extensions.ignoreRecommendations": true,
    "files.autoSave": "off",
    "files.exclude": {
        "**/.DS_Store": false,
        "**/.git": false,
        "**/.hg": false,
        "**/.svn": false,
        "**/Thumbs.db": false
    },
    "files.hotExit": "onExitAndWindowClose",
    "files.insertFinalNewline": false,
    "files.participants.timeout": 5000,
    "files.simpleDialog.enable": true,
    "files.trimFinalNewlines": false,
    "files.trimTrailingWhitespace": false,
    "files.watcherExclude": {
        "**/.bloop/**": true,
        "**/.build/**": true,
        "**/.cache/**": true,
        "**/.classpath": true,
        "**/.metals/**": true,
        "**/.project": true,
        "**/.pytest_cache/**": true,
        "**/.settings/**": true,
        "**/.svn/**": true,
        "**/.tox/**": true,
        "**/build/**": true,
        "**/dist/**": true,
        "**/node_modules/**": true,
        "**/target/**": true
    },
    "git.autoStash": false,
    "git.autofetch": false,
    "git.decorations.enabled": true,
    "git.enabled": true,
    "git.showPushSuccessNotification": false,
    "github.copilot.enable": {
        "*": true,
        "yaml": true,
        "plaintext": true,
        "markdown": true
    },
    "javascript.preferences.includePackageJsonAutoImports": "off",
    "javascript.suggest.includeCompletionsForModuleExports": false,
    "json.maxItemsComputed": 5000,
    "keyboard.dispatch": "keyCode",
    "problems.decorations.enabled": true,
    "search.collapseResults": "auto",
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/*.code-search": true,
        "**/dist": true,
        "**/build": true,
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true,
        "**/tmp": true,
        "**/temp": true,
        "**/.cache": true,
        "**/target": true
    },
    "search.showLineNumbers": false,
    "search.smartCase": true,
    "telemetry.telemetryLevel": "off",
    "terminal.integrated.cursorBlinking": false,
    "terminal.integrated.drawBoldTextInBrightColors": false,
    "terminal.integrated.fastScrollSensitivity": 5,
    "terminal.integrated.gpuAcceleration": "off",
    "terminal.integrated.smoothScrolling": false,
    "terminal.integrated.stickyScroll.enabled": false,
    "typescript.disableAutomaticTypeAcquisition": true,
    "typescript.preferences.includePackageJsonAutoImports": "off",
    "typescript.preferences.useLabelDetailsInCompletionEntries": false,
    "typescript.suggest.includeCompletionsForModuleExports": false,
    "typescript.surveys.enabled": false,
    "typescript.workspaceSymbols.enabled": false,
    "update.mode": "none",
    "update.showReleaseNotes": false,
    "vim.cursorStylePerMode.insert": "line",
    "vim.cursorStylePerMode.normal": "block",
    "vim.cursorStylePerMode.replace": "underline",
    "vim.cursorStylePerMode.visual": "line",
    "vim.cursorStylePerMode.visualblock": "line-thin",
    "vim.cursorStylePerMode.visualline": "line",
    "vim.handleKeys": {
        "<C-d>": true,
        "<C-x>": true,
        "<C-c>": true,
        "<C-z>": true,
        "<C-s>": true,
        "<C-p>": true,
        "<C-j>": false,
        "<C-i>": false,
        "<C-n>": false,
        "<C-k>": false,
        "<C-w>": false
    },
    "vim.history": 1000,
    "vim.hlsearch": true,
    "vim.incsearch": true,
    "vim.shell": "/bin/sh",
    "vim.statusBarColorControl": false,
    "vim.surround": true,
    "vim.textwidth": 120,
    "vim.vimrc.enable": true,
    "vim.vimrc.path": "$HOME/.code-vimrc",
    "window.menuBarVisibility": "toggle",
    "window.newWindowDimensions": "inherit",
    "window.restoreWindows": "none",
    "workbench.activityBar.location": "default",
    "workbench.colorCustomizations": {
        "editorCursor.background": "#303030",
        "editorCursor.foreground": "#69baa7",
        "statusBar.background": "#303030",
        "statusBar.border": "#303030",
        "statusBar.debuggingBackground": "#7d4c10",
        "statusBar.debuggingForeground": "#ffffff",
        "statusBar.foreground": "#ffffff",
        "statusBar.noFolderBackground": "#303030",
        "statusBar.noFolderForeground": "#ffffff",
    },
    "workbench.colorTheme": "Dark Pastel Theme",
    "workbench.editor.decorations.badges": false,
    "workbench.editor.decorations.colors": false,
    "workbench.editor.enablePreview": false,
    "workbench.editor.enablePreviewFromQuickOpen": false,
    "workbench.editor.limit.enabled": true,
    "workbench.editor.limit.perEditorGroup": true,
    "workbench.editor.limit.value": 10,
    "workbench.editor.pinnedTabSizing": "compact",
    "workbench.editor.showIcons": false,
    "workbench.editor.tabSizing": "fit",
    "workbench.editorAssociations": {},
    "workbench.hover.delay": 1500,
    "workbench.iconTheme": null,
    "workbench.reduceMotion": "on",
    "workbench.startupEditor": "none",
    "workbench.statusBar.visible": true,
    "workbench.tips.enabled": false,
    "workbench.tree.indent": 16,
    "workbench.tree.renderIndentGuides": "none",
    "workbench.welcomePage.walkthroughs.openOnInstall": false,
    "cSpell.enabled": false,
}