Skip to content

Instantly share code, notes, and snippets.

@bhrott
Last active October 16, 2017 22:02
Show Gist options
  • Save bhrott/db76a2103c536b890ee297a58a4d8988 to your computer and use it in GitHub Desktop.
Save bhrott/db76a2103c536b890ee297a58a4d8988 to your computer and use it in GitHub Desktop.
My VS Code Settings
{
"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