Skip to content

Instantly share code, notes, and snippets.

@97revenge
Last active March 30, 2023 20:03
Show Gist options
  • Save 97revenge/8c974e5c978cb9a0c013492cf5998970 to your computer and use it in GitHub Desktop.
Save 97revenge/8c974e5c978cb9a0c013492cf5998970 to your computer and use it in GitHub Desktop.
my settings.json
{
// meu settings do vs code 🔥🌱
"emmet.syntaxProfiles": {
"javascript": "jsx",
"typescript": "tsx"
},
"files.associations": {
"*.jsx": "javascriptreact",
"*.js": "javascript",
"*.tsx": "typescriptreact",
"*.ts": "typescript"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"emmet.showSuggestionsAsSnippets": true,
"emmet.preferences": { "css.color.short": true },
"window.commandCenter": true,
"editor.fontSize": 20,
"editor.lineHeight": 25,
"editor.acceptSuggestionOnCommitCharacter": true,
"editor.accessibilityPageSize": 15,
"terminal.integrated.fontFamily": "",
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontWeight": "bold",
"terminal.integrated.lineHeight": 0.5,
"terminal.integrated.minimumContrastRatio": 1,
"terminal.integrated.tabs.title": "${task}",
"terminal.integrated.drawBoldTextInBrightColors": false,
"terminal.explorerKind": "integrated",
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.minimap.enabled": false,
"editor.renderLineHighlight": "gutter",
"workbench.iconTheme": "eq-material-theme-icons-darker",
"workbench.colorTheme": "Monokai Pro",
"terminal.integrated.defaultProfile.windows": "Git Bash"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment