Skip to content

Instantly share code, notes, and snippets.

@zevolution
Last active August 6, 2021 01:37
Show Gist options
  • Save zevolution/702a0078db84c11def08174bdbf6b522 to your computer and use it in GitHub Desktop.
Save zevolution/702a0078db84c11def08174bdbf6b522 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.fontSize": 14,
//"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",
"editor.tabSize": 2,
"window.zoomLevel": 0,
"diffEditor.ignoreTrimWhitespace": true,
"workbench.colorTheme": "Dracula",
"workbench.sideBar.location": "left"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment