vscodium search exclusions

This commit is contained in:
matthieu42morin 2024-05-14 05:22:41 +02:00
parent cef9e13bb2
commit 1249ffed89
1 changed files with 29 additions and 5 deletions

View File

@ -5,8 +5,31 @@
"workbench.cloudChanges.continueOn": "off", "workbench.cloudChanges.continueOn": "off",
"workbench.cloudChanges.autoResume": "off", "workbench.cloudChanges.autoResume": "off",
"update.mode": "start", "update.mode": "start",
"window.menuBarVisibility": "compact", //!!!! Stop Searching useless stuff and env exclude!!!!
"workbench.colorTheme": "Gruvbox Dark Hard", "search.exclude": {
"**/*.git*": true,
"**/*.esl*": true,
"**/*.env*/**": true,
"**/*LICENSE": true,
"**/*COPYING": true,
"**/node_modules*/**": true,
"**/*package.json":true,
"**/*package-lock.json":true,
"**/*yarn.lock":true,
"**/*yarn-error.log":true,
"**/*tsconfig.json":true,
"**/*tslint.json":true,
"**/*pnpm-lock.yaml":true,
"**/*README*": true,
"**/bower_components*/**": true,
"**/*.code-search": true,
"**/*dist": true,
"**/*build": true,
"**/*out": true,
"**/*tmp": true,
"**/*temp": true,
"**/*cache": true,
},
// === Telemetry === // === Telemetry ===
"continue.telemetryEnabled": false, "continue.telemetryEnabled": false,
@ -186,8 +209,7 @@
"ansible.lightspeed.enabled": false, "ansible.lightspeed.enabled": false,
"yaml.hover": true, "yaml.hover": true,
"yaml.completion": true, "yaml.completion": true,
// <<< IaC, Devops >>> "workbench.colorTheme": "Gruvbox Dark Hard",
"nix.enableLanguageServer": true, "nix.enableLanguageServer": true,
"nix.serverPath": "nil", "nix.serverPath": "nil",
"[nix]": { "[nix]": {
@ -218,5 +240,7 @@
"**/*.zsh-theme": true, "**/*.zsh-theme": true,
"**/*.development": true, "**/*.development": true,
"**/*.production": true "**/*.production": true
} },
"window.menuBarVisibility": "compact",
"continue.enableTabAutocomplete": true
} }