Skip to content

Instantly share code, notes, and snippets.

@samlucax
Created December 7, 2020 23:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samlucax/1422ce32905c55ff1653a95532fd83f4 to your computer and use it in GitHub Desktop.
Save samlucax/1422ce32905c55ff1653a95532fd83f4 to your computer and use it in GitHub Desktop.
Preferências do Visual Studio Code
{
// Define o tema do VSCode
"workbench.colorTheme": "Dracula",
//Aumenta a fonte do terminal
"terminal.integrated.fontSize": 22,
// Define o tema dos ícones na sidebar
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
// Configura tamanho e família da fonte
"editor.tabSize": 2,
"editor.fontSize": 18,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
// Deixei como true apenas para ter uma garantia, as vezes pode ser excluído sem querer.
"explorer.confirmDelete": true,
"editor.rulers": [80, 120],
"terminal.integrated.shell.osx": "/bin/zsh",
// Controls whether the explorer should render folders in a compact form. In such a form, single child folders will be compressed in a combined tree element. Useful for Java package structures, for example.
"vsicons.dontShowNewVersionMessage": true,
"material-icon-theme.showWelcomeMessage": false,
"window.zoomLevel": 0,
"tabnine.experimentalAutoImports": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment