Skip to content

Instantly share code, notes, and snippets.

@gest01
Last active October 31, 2018 17:33
Show Gist options
  • Save gest01/c9da14370672ab2e7ea854603ddbc50d to your computer and use it in GitHub Desktop.
Save gest01/c9da14370672ab2e7ea854603ddbc50d to your computer and use it in GitHub Desktop.
vs code config
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"editor.formatOnSave": true,
"[typescript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"workbench.iconTheme": "vscode-icons",
"editor.minimap.enabled": false,
"editor.codeLens": false,
"window.titleBarStyle": "custom",
"vsicons.projectDetection.autoReload": true,
"prettier.singleQuote": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/bin": true,
"**/obj": true,
"**/node_modules": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment