Skip to content

Instantly share code, notes, and snippets.

@lucascardial
Created May 17, 2019 00:48
Show Gist options
  • Save lucascardial/03116b13f411231c52baadc112a67b91 to your computer and use it in GitHub Desktop.
Save lucascardial/03116b13f411231c52baadc112a67b91 to your computer and use it in GitHub Desktop.
VSCODE Settings
{
"workbench.colorTheme": "Dracula",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 18,
"editor.lineHeight": 24,
"editor.formatOnSave": true,
"editor.rulers": [80, 120],
"editor.tabSize": 2,
"editor.renderLineHighlight": "gutter",
"terminal.integrated.fontSize": 14,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"prettier.eslintIntegration": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true
},
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": false,
"git.enableSmartCommit": true,
"files.associations": {
"*.njk": "c"
},
"window.zoomLevel": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment