Skip to content

Instantly share code, notes, and snippets.

@Leonardofreua
Last active January 6, 2021 17:24
Show Gist options
  • Save Leonardofreua/ad63df62cec841d167f22bafabc99611 to your computer and use it in GitHub Desktop.
Save Leonardofreua/ad63df62cec841d167f22bafabc99611 to your computer and use it in GitHub Desktop.
VSCode settings
{
"python.pythonPath": "/bin/python3.9",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.colorTheme": "Darcula Theme from IntelliJ",
"window.zoomLevel": 0,
"python.languageServer": "Microsoft",
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"workbench.iconTheme": "vs-nomo-dark",
"editor.minimap.enabled": false,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [80, 120],
"editor.formatOnSave": false,
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
// Aplica um sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight": "all",
// Aumenta a fonte do terminal
"terminal.integrated.fontSize": 14,
// Define o tema dos ícones na sidebar
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"window.zoomLevel": 0,
"extensions.ignoreRecommendations": false,
"emmet.syntaxProfiles": {
"javascript": "jsx",
"nunjucks": "html"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment