Skip to content

Instantly share code, notes, and snippets.

@fernandomaraujo
Last active January 29, 2020 23:33
Show Gist options
  • Save fernandomaraujo/91c3ee8412314680b9977d33a45aef99 to your computer and use it in GitHub Desktop.
Save fernandomaraujo/91c3ee8412314680b9977d33a45aef99 to your computer and use it in GitHub Desktop.
Configurações do meu vscode
{
"workbench.iconTheme": "material-icon-theme",
"window.titleBarStyle": "custom",
"window.menuBarVisibility": "default",
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.rendererType": "dom",
// fonte, tema e espaçamento
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"workbench.colorTheme": "Dracula",
"editor.tabSize": 2,
// sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight": "gutter",
// auto complete para jsx
"emmet.syntaxProfiles": {
"javascript": "jsx",
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment