Skip to content

Instantly share code, notes, and snippets.

@LFeli
Last active March 8, 2024 21:54
Show Gist options
  • Save LFeli/ea8a1312387ada3c5e7c346f293a6548 to your computer and use it in GitHub Desktop.
Save LFeli/ea8a1312387ada3c5e7c346f293a6548 to your computer and use it in GitHub Desktop.
VS Code Settings
{
// Editor
"editor.wordWrap": "on",
"editor.tabCompletion": "on",
"editor.accessibilitySupport": "off",
"editor.renderLineHighlight" : "gutter",
"editor.suggestSelection": "first",
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"explorer.compactFolders": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.addMissingImports": "explicit"
},
"extensions.ignoreRecommendations": true,
"editor.cursorSmoothCaretAnimation": "on",
// Editor style
"window.zoomLevel": -1,
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 16,
"editor.fontWeight": "400",
"editor.lineHeight": 28,
"editor.fontLigatures": true,
"workbench.productIconTheme": "fluent-icons",
"workbench.colorTheme": "Illusion",
"symbols.hidesExplorerArrows": false,
"workbench.iconTheme": "symbols",
"editor.guides.bracketPairs": "active",
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
// Terminal
"terminal.integrated.fontFamily": "JetBrains Mono",
// Configs extensions
"liveServer.settings.donotShowInfoMsg": true,
// Language settings
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",
"tailwindCSS.emmetCompletions": true,
"emmet.syntaxProfiles" : {
"javascript" : "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact",
"javascriptreact": "javascriptreact",
"typescriptreact": "typescriptreact"
},
"[prisma]":{
"editor.formatOnSave": true
},
"cSpell.language": "en,pt,pt_BR",
"cSpell.enabled": true,
"cSpell.userWords": [
"cnpj",
"pizzashop",
"Rocketseat",
"Shadcn",
"webp",
"Whatsapp"
],
// Others configs
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"package.json": ".eslint*, prettier*, tsconfig*, vite*, pnpm-lock*, bun.lockb, nest*",
"tailwind.config.js": "tailwind.config*, postcss.config*",
".env.local": ".env*",
".env": ".env*"
},
"terminal.integrated.env.windows": {},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment