Skip to content

Instantly share code, notes, and snippets.

@iaurg
Created October 10, 2019 22:00
Show Gist options
  • Save iaurg/504e9e2c8c1cc16669bbb6ce10d27a7d to your computer and use it in GitHub Desktop.
Save iaurg/504e9e2c8c1cc16669bbb6ce10d27a7d to your computer and use it in GitHub Desktop.
Extensions and configs for VScode

Extensions

Color Highlight DotEnv EditorConfig ESLint Markdown All in One Material Icon Theme or VStudio Icons

Theme

Dracula Official

Configs

{
  // Define o tema do VSCode
  "workbench.colorTheme":"Dracula",

  // 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
  ],

  // 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"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment