Skip to content

Instantly share code, notes, and snippets.

@tevass
Last active January 24, 2024 23:54
Show Gist options
  • Save tevass/f382e32ad373bf180bf21f9c6b402d53 to your computer and use it in GitHub Desktop.
Save tevass/f382e32ad373bf180bf21f9c6b402d53 to your computer and use it in GitHub Desktop.
VSCode Settings
{
// Editor
"editor.fontSize": 16,
"editor.lineHeight": 1.6,
"editor.fontFamily": "JetBrains Mono",
"editor.tabSize": 2,
"editor.fontLigatures": true,
"editor.rulers": [
80,
120
],
"editor.parameterHints.enabled": true,
"editor.renderLineHighlight": "gutter",
"editor.suggestSelection": "first",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.accessibilitySupport": "off",
"editor.semanticHighlighting.enabled": false,
"editor.minimap.enabled": false,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
// ESLint
"eslint.format.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"update.mode": "start",
"update.showReleaseNotes": true,
// Terminal
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.showExitAlert": false,
// Workbench
"workbench.startupEditor": "none",
"workbench.editor.labelFormat": "short",
"workbench.iconTheme": "symbols",
"workbench.editor.empty.hint": "hidden",
"workbench.editorAssociations": {
"*.exe": "default"
},
"workbench.colorTheme": "Min Dark",
"workbench.layoutControl.enabled": false,
"workbench.statusBar.visible": false,
// Window
"window.commandCenter": false,
// "window.titleBarStyle": "native",
"window.menuBarVisibility": "toggle",
"breadcrumbs.enabled": false,
// Explorer
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.fileNesting.enabled": true,
// Files
"files.associations": {
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".prettierrc": "json"
},
// Security
"security.workspace.trust.untrustedFiles": "newWindow",
// JS
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
// TS
"typescript.suggest.autoImports": true,
"typescript.preferences.autoImportFileExcludePatterns": ["dist", "dist/*"],
"typescript.updateImportsOnFileMove.enabled": "never",
"typescript.tsserver.log": "off",
// Extensions
"extensions.ignoreRecommendations": true,
// Prisma
"[prisma]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Prisma.prisma"
},
// Code Spell Checker
"cSpell.language": "en,pt",
"cSpell.userWords": [
"chakra",
"Dotenv",
"fastify",
"Fastify",
"middlewares",
"nestjs",
"Omni",
"rocketseat"
],
// Symbols - Icon Theme
"symbols.hidesExplorerArrows": false,
"symbols.folders.associations": {},
"symbols.files.associations": {
"*.module.ts": "nest"
},
// ...
"git.enableSmartCommit": true,
"git.openRepositoryInParentFolders": "never",
// APC
"apc.electron": {
"titleBarStyle": "hidden"
},
"apc.stylesheet": {
".title-label > h2": "display: none",
".editor-actions": "display: none",
".folder-icon::before": "background-size: 18px; width: 18px",
".inline-title-bar #workbench\\.parts\\.activitybar.activitybar > .content": "transform: translateY(0) !important; height: 100% !important;"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment