aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkj_sh6042025-10-07 17:52:11 -0400
committerkj_sh6042025-10-07 17:52:11 -0400
commitbea239608b5e8bea1cdc0088d637982cea68b5da (patch)
treebae680d6ff1d0ee67a2af2b0a182adbbdfeec113
parenta2ad575b645019d7c628136661144d7186a49e47 (diff)
refactor: more code-oss optimizations
-rw-r--r--.config/Code/User/settings.json54
1 files changed, 54 insertions, 0 deletions
diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json
index 5fca5a8..4767284 100644
--- a/.config/Code/User/settings.json
+++ b/.config/Code/User/settings.json
@@ -4,6 +4,7 @@
},
"breadcrumbs.enabled": false,
"chat.agent.maxRequests": 50,
+ "css.validate": false,
"editor.acceptSuggestionOnCommitCharacter": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.bracketPairColorization.enabled": false,
@@ -165,8 +166,26 @@
},
"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,
@@ -178,10 +197,34 @@
"plaintext": true,
"markdown": true
},
+ "html.validate.scripts": false,
+ "html.validate.styles": false,
+ "javascript.preferences.includePackageJsonAutoImports": "off",
+ "javascript.suggest.includeCompletionsForModuleExports": false,
+ "javascript.validate.enable": false,
+ "json.maxItemsComputed": 5000,
"keyboard.dispatch": "keyCode",
+ "less.validate": false,
"problems.decorations.enabled": false,
"scm.decorations.enabled": true,
+ "scss.validate": false,
"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.globalFindClipboard": false,
"search.showLineNumbers": false,
"search.smartCase": true,
@@ -191,6 +234,13 @@
"terminal.integrated.fastScrollSensitivity": 5,
"terminal.integrated.rendererType": "dom",
"terminal.integrated.smoothScrolling": false,
+ "typescript.disableAutomaticTypeAcquisition": true,
+ "typescript.preferences.includePackageJsonAutoImports": "off",
+ "typescript.preferences.useLabelDetailsInCompletionEntries": false,
+ "typescript.suggest.includeCompletionsForModuleExports": false,
+ "typescript.surveys.enabled": false,
+ "typescript.validate.enable": false,
+ "typescript.workspaceSymbols.enabled": false,
"update.enableWindowsBackgroundUpdates": false,
"update.showReleaseNotes": false,
"vim.cursorStylePerMode.insert": "line",
@@ -226,9 +276,13 @@
"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": true,
"workbench.editor.tabSizing": "fit",
+ "workbench.editorAssociations": {},
"workbench.hover.delay": 1500,
"workbench.reduceMotion": "on",
"workbench.startupEditor": "none",