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.autoResume": "off",
"update.mode": "start",
"window.menuBarVisibility": "compact",
"workbench.colorTheme": "Gruvbox Dark Hard",
//!!!! Stop Searching useless stuff and env exclude!!!!
"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 ===
"continue.telemetryEnabled": false,
@ -186,8 +209,7 @@
"ansible.lightspeed.enabled": false,
"yaml.hover": true,
"yaml.completion": true,
// <<< IaC, Devops >>>
"workbench.colorTheme": "Gruvbox Dark Hard",
"nix.enableLanguageServer": true,
"nix.serverPath": "nil",
"[nix]": {
@ -218,5 +240,7 @@
"**/*.zsh-theme": true,
"**/*.development": true,
"**/*.production": true
}
},
"window.menuBarVisibility": "compact",
"continue.enableTabAutocomplete": true
}