Created
December 1, 2016 06:47
-
-
Save philipjkim/0b5f9cfd53b85445c9e726add8ad8c03 to your computer and use it in GitHub Desktop.
Custom settings for VS code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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