Skip to content

Instantly share code, notes, and snippets.

@pejantantangguh
Created June 26, 2019 22:28
Show Gist options
  • Save pejantantangguh/120b76a42976bda06c20382d08d7bb7c to your computer and use it in GitHub Desktop.
Save pejantantangguh/120b76a42976bda06c20382d08d7bb7c to your computer and use it in GitHub Desktop.
VS Code tips
// https://dev.to/claudiodavi/reducing-vscode-memory-consumption-527k?utm_source=digest_mailer&utm_medium=email&utm_campaign=digest_email
"telemetry.enableTelemetry": false
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/.vscode": true,
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/node_modules": true,
"node_modules": true,
"venv": true,
"*.sublime-*": true,
"env*": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment