Last active
October 16, 2017 22:02
-
-
Save bhrott/db76a2103c536b890ee297a58a4d8988 to your computer and use it in GitHub Desktop.
My VS Code Settings
This file contains 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
{ | |
"workbench.colorTheme": "Hop Light", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.fontAliasing": "antialiased", | |
"window.zoomLevel": 1.2, | |
// Pre VS Code 1.15 | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
// As of VS Code 1.15 | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"editor.minimap.enabled": false, | |
"editor.formatOnSave": true, | |
"javascript.format.enable": true, | |
"prettier.singleQuote": true, | |
"prettier.eslintIntegration": true, | |
"prettier.tabWidth": 4, | |
"prettier.semi": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment