Skip to content

Instantly share code, notes, and snippets.

@davi-gsouza
Last active May 25, 2023 22:43
Show Gist options
  • Save davi-gsouza/373980eeabacb4eec0e62924eea2e55e to your computer and use it in GitHub Desktop.
Save davi-gsouza/373980eeabacb4eec0e62924eea2e55e to your computer and use it in GitHub Desktop.
VSCode Settings
{
"workbench.colorTheme": "Rosé Pine Moon",
"workbench.iconTheme": "symbols",
"workbench.editor.tabSizing": "shrink",
// font
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.lineHeight": 1.5,
"editor.tabSize": 2,
"editor.wordWrap": "off",
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.bracketPairColorization.enabled": true,
"editor.hover.enabled": true,
"breadcrumbs.filePath": "off",
"outline.icons": false,
"terminal.integrated.fontSize": 15,
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"security.workspace.trust.untrustedFiles": "open",
"telemetry.telemetryLevel": "off",
// prettier and live server
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"prettier.tabWidth": 2,
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"prettier.arrowParens": "avoid",
"prettier.endOfLine": "auto",
"html.format.wrapAttributes": "auto",
"html.format.wrapLineLength": 0,
"html.autoClosingTags": false,
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
// "files.autoSave": "afterDelay",
// "files.autoSaveDelay": 250,
// codesnap
"codesnap.transparentBackground": true,
"codesnap.showLineNumbers": false,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"css.lint.unknownAtRules": "ignore",
"workbench.productIconTheme": "fluent-icons",
// executar ações de forma automatizada
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.addMissingImports": true
},
"[prisma]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Prisma.prisma"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment