Skip to content

Instantly share code, notes, and snippets.

@GulajavaMinistudio
Created February 10, 2020 04:29
Show Gist options
  • Save GulajavaMinistudio/43c41a4136ca60260e14697c893716ec to your computer and use it in GitHub Desktop.
Save GulajavaMinistudio/43c41a4136ca60260e14697c893716ec to your computer and use it in GitHub Desktop.
VS Code Settings Workspace 2020
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/.vscode": true,
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/node_modules": false,
"node_modules": true,
"venv": true,
"*.sublime-*": true,
"env*": true,
"dist": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true,
"**/dist": true,
"**/scss": true,
"**/.idea": true,
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true,
"**/dist/**": true,
"**/scss/**": true,
"**/.idea/": true,
},
"workbench.colorCustomizations": {
"editorCursor.foreground": "#ff4057",
"terminalCursor.foreground": "#ff4057"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment