Skip to content

Instantly share code, notes, and snippets.

@philipjkim
Created December 1, 2016 06:47
Show Gist options
  • Save philipjkim/0b5f9cfd53b85445c9e726add8ad8c03 to your computer and use it in GitHub Desktop.
Save philipjkim/0b5f9cfd53b85445c9e726add8ad8c03 to your computer and use it in GitHub Desktop.
Custom settings for VS code
// Place your settings in this file to overwrite the default settings
{
"files.autoSave": "onWindowChange",
"files.associations": {
"*.tac": "python",
"*.ace": "jade"
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/vendor": true
},
"go.formatTool": "gofmt",
"go.formatFlags": [
"-s",
"-e"
],
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment