Skip to content

Instantly share code, notes, and snippets.

@LevPewPew
Last active August 24, 2020 11:44
Show Gist options
  • Save LevPewPew/bf33e66d2a28ac7f80c25e6d5732d380 to your computer and use it in GitHub Desktop.
Save LevPewPew/bf33e66d2a28ac7f80c25e6d5732d380 to your computer and use it in GitHub Desktop.
vs code setting to exclude certain folders from returning results in global search ctrl/cmd + shift + f
"search.exclude": {
"**/.gitignore": true,
"**/.netlify": true,
"**/*?config*?": true,
"**/build": true,
"**/node_modules": true,
"**/package-lock.json": true,
"**/package.json": true,
"**/README.md": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment