Skip to content

Instantly share code, notes, and snippets.

@htv2012
Last active June 14, 2025 15:05
Show Gist options
  • Select an option

  • Save htv2012/22b48a1f85c6bf65f0c82d0821188041 to your computer and use it in GitHub Desktop.

Select an option

Save htv2012/22b48a1f85c6bf65f0c82d0821188041 to your computer and use it in GitHub Desktop.
Exclude Files and Directories from vscode

Add this to Visual Studio Code

"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/__pycache__": true,
"**/.venv": true,
"**/ruff_cache": true
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment