Skip to content

Instantly share code, notes, and snippets.

@hugoalmeidahh
Created July 6, 2022 06:30
Show Gist options
  • Save hugoalmeidahh/e4a6dc2e7bb825ba73ed27c9cb4d485c to your computer and use it in GitHub Desktop.
Save hugoalmeidahh/e4a6dc2e7bb825ba73ed27c9cb4d485c to your computer and use it in GitHub Desktop.
My VSCode Settings
{
"workbench.colorTheme": "Dracula Soft",
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "newUntitledFile",
"files.autoSave": "onFocusChange",
"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",
"editor.parameterHints.enabled": false,
"terminal.integrated.fontSize": 14,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment