Skip to content

Instantly share code, notes, and snippets.

@adlerdias
Created April 1, 2020 16:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adlerdias/aff73341e2c078d519b1f14a5bd64010 to your computer and use it in GitHub Desktop.
Save adlerdias/aff73341e2c078d519b1f14a5bd64010 to your computer and use it in GitHub Desktop.
visual studio code settings.json -> search.exclude
"search.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/tmp": true,
"**/node_modules": true,
"**/bower_components": true,
// Hide everything in /public, except "index.php"
"**/public/[abcdefghjklmnopqrstuvwxyz]*": true,
"**/public/i[abcdefghijklmopqrstuvwxyz]*": true,
// Hide everything in /vendor, except "laravel" folder.
"**/vendor/[abcdefghijkmnopqrstuvwxyz]*": true,
"**/vendor/l[bcdefghijklmnopqrstuvwxyz]*": true,
"storage/framework/views": true
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment