Last active
June 25, 2021 20:57
Settings of the VSCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Define the theme | |
"workbench.colorTheme": "Lukin Theme", | |
// Define icon theme | |
"workbench.iconTheme": "material-icon-theme", | |
// Novo arquivo sempre em branco | |
"workbench.startupEditor": "newUntitledFile", | |
// Aumenta a font do terminal | |
"terminal.integrated.fontSize": 14, | |
// Ajusta as configurações | |
"editor.tabSize": 2, | |
"editor.fontSize": 18, | |
"editor.lineHeight": 24, | |
// Não compacta pastas vazias (mostrando so o caminho) | |
"explorer.compactFolders": false, | |
// Não seleciona a linha toda | |
"editor.renderLineHighlight": "gutter", | |
// Exibi o nome da pasta no arquivo | |
"workbench.editor.labelFormat": "medium", | |
// Remove recomendação automaticas | |
"extensions.ignoreRecommendations": true, | |
// Mostra as breadcrumds para chegar no arquivo | |
"breadcrumbs.enabled": true, | |
// Cria regras para forcar o tamanho do codigo em 80 e no maximo 120 | |
"editor.rulers": [80, 120], | |
"liveServer.settings.donotShowInfoMsg": true, | |
// Tags com fechamento automático | |
"emmet.syntaxProfiles": { "html": "xhtml" }, | |
// Indentação | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
// Deixa a area do titulo com o layout mais fluido | |
"window.titleBarStyle": "custom", | |
// Mudar cor das tabs e do breadcrumb | |
"workbench.colorCustomizations": { | |
"[Lukin Theme]": { | |
"tab.activeBackground": "#333", | |
"breadcrumb.background": "#333", | |
"tab.hoverBackground": "#333" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment