Skip to content

Instantly share code, notes, and snippets.

@Isra0210
Created June 23, 2020 10:58
Show Gist options
  • Save Isra0210/047a7d8d5d3ffd99108bedd329a8346b to your computer and use it in GitHub Desktop.
Save Isra0210/047a7d8d5d3ffd99108bedd329a8346b to your computer and use it in GitHub Desktop.
{
"editor.fontSize": 16,
"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],
"editor.formatOnSave": false,
// Aplica o menui lateral na direita
"workbench.sideBar.location": "left",
// Aplica o salve automatico
"files.autoSave": "onFocusChange",
"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": "gutter",
// Aumenta a fonte do terminal
"terminal.integrated.fontSize": 14,
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 4,
"window.zoomLevel": 0,
"extensions.ignoreRecommendations": false,
"emmet.syntaxProfiles": {
"javascript": "jsx",
"nunjucks": "html"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"nunjucks": "html"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"breadcrumbs.enabled": true,
"git.enableSmartCommit": true,
"editor.parameterHints.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "never",
"terminal.integrated.shell.osx": "/bin/zsh",
"explorer.confirmDragAndDrop": false,
"liveshare.featureSet": "insiders",
"explorer.confirmDelete": false,
"typescript.tsserver.log": "verbose",
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"dart.warnWhenEditingFilesOutsideWorkspace": false,
"git.autofetch": true,
"diffEditor.ignoreTrimWhitespace": false,
"dart.debugExternalLibraries": true,
"dart.debugSdkLibraries": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment