Skip to content

Instantly share code, notes, and snippets.

@dzuluaga
Last active June 20, 2025 03:32
Show Gist options
  • Save dzuluaga/afccd286d766014c89757af488d33e4a to your computer and use it in GitHub Desktop.
Save dzuluaga/afccd286d766014c89757af488d33e4a to your computer and use it in GitHub Desktop.
Added .vscode/settings.json to improve editor performance by excluding build folders; please restart your editor after pulling to apply the changes.
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.gradle": true,
"**/.idea": true,
"**/bin": true,
"**/build": true,
"**/*.jar": true,
"**/*.a": true,
"**/*.so": true,
"**/Pods": true,
"**/*.podspec": true,
"**/*.xcworkspace": true,
"**/*.xcodeproj": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/.gradle": true,
"**/bin": true,
"**/build": true,
"**/*.jar": true,
"**/*.a": true,
"**/*.so": true,
"**/Pods": true,
"**/*.podspec": true,
"**/*.xcworkspace": true,
"**/*.xcodeproj": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true,
"**/.gradle/**": true,
"**/bin/**": true,
"**/build/**": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment