Skip to content

Instantly share code, notes, and snippets.

@samlucax
Created December 7, 2020 23:14
Show Gist options
  • Select an option

  • Save samlucax/1422ce32905c55ff1653a95532fd83f4 to your computer and use it in GitHub Desktop.

Select an option

Save samlucax/1422ce32905c55ff1653a95532fd83f4 to your computer and use it in GitHub Desktop.

Revisions

  1. samlucax created this gist Dec 7, 2020.
    45 changes: 45 additions & 0 deletions vscode_prefs.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,45 @@
    {
    // 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
    }