Skip to content

Instantly share code, notes, and snippets.

@lucalves
Last active June 22, 2022 14:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucalves/24f91edaa5f298cfa0456024cbd41d5b to your computer and use it in GitHub Desktop.
Save lucalves/24f91edaa5f298cfa0456024cbd41d5b to your computer and use it in GitHub Desktop.
Visual Studio Code Configuration
{
// Configurações da fonte FiraCode
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
// Demais configurações
"workbench.colorTheme": "Omni",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.fontSize": 13,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
// Enabling default bracket colorizer function
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs":"active",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"tabnine.experimentalAutoImports": true,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
}
@Ttamez68A
Copy link

#settings.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment