Skip to content

Instantly share code, notes, and snippets.

@CristianWesleyFront
Last active November 8, 2021 14:58
Show Gist options
  • Save CristianWesleyFront/3e55b3d975834e0d2b0cea148ff62876 to your computer and use it in GitHub Desktop.
Save CristianWesleyFront/3e55b3d975834e0d2b0cea148ff62876 to your computer and use it in GitHub Desktop.
VsCode settings
{
// Define o tema do VSCode
"workbench.colorTheme":"Omni",
// Configura tamanho e família da fonte
"editor.fontSize":16,
"editor.lineHeight":24,
"editor.fontFamily":"Fira Code",
"editor.fontLigatures":true,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [
80,
120
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"material-icon-theme.activeIconPack": "react_redux",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tabSize": 2,
"explorer.compactFolders": false,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
// Aplica um sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight":"gutter",
// Aumenta a fonte do terminal
"terminal.integrated.fontSize":14,
// Define o tema dos ícones na sidebar
"workbench.iconTheme":"material-icon-theme",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.formatOnSave": true,
"window.zoomLevel": 0,
"material-icon-theme.folders.theme": "specific",
"material-icon-theme.folders.color": "#42a5f5"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment