Created
May 31, 2024 21:04
-
-
Save Biguelini/0440e4c12ce5e93bea3eb991c3ec3b95 to your computer and use it in GitHub Desktop.
My Visual Studio Code Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.fontSize": 14, | |
"editor.lineHeight": 1.8, | |
"javascript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.rulers": [ | |
120, | |
160 | |
], | |
"extensions.ignoreRecommendations": true, | |
"typescript.tsserver.log": "off", | |
"files.associations": { | |
".env.*": "dotenv", | |
".prettierrc": "json", | |
"*.css": "css" | |
}, | |
"symbols.files.associations": { | |
"*.module.ts": "nest", | |
"*.guard.ts": "typescript", | |
"*.spec.ts": "ts-test", | |
"*.e2e-spec.ts": "ts-test", | |
"vitest.config.e2e.ts": "vite", | |
".env.example": "gear" | |
}, | |
"editor.parameterHints.enabled": false, | |
"editor.renderLineHighlight": "gutter", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"editor.suggestSelection": "first", | |
"explorer.confirmDelete": false, | |
"gitlens.codeLens.recentChange.enabled": false, | |
"terminal.integrated.showExitAlert": false, | |
"[prisma]": { | |
"editor.formatOnSave": true | |
}, | |
"typescript.suggest.autoImports": true, | |
"terminal.integrated.env.osx": { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"workbench.editor.labelFormat": "short", | |
"editor.fontLigatures": true, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"explorer.compactFolders": false, | |
"git.enableSmartCommit": true, | |
"editor.accessibilitySupport": "off", | |
"explorer.confirmDragAndDrop": false, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
}, | |
"editor.semanticHighlighting.enabled": false, | |
"breadcrumbs.enabled": false, | |
"workbench.productIconTheme": "fluent-icons", | |
"editor.fontFamily": "JetBrains Mono", | |
"gitlens.codeLens.authors.enabled": false, | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
"files.exclude": { | |
"**\/CVS": true, | |
"**\/.DS_Store": true, | |
"**\/.hg": true, | |
"**\/.svn": true, | |
"**\/.git": true, | |
".vscode": true, | |
"node_modules": true | |
}, | |
"workbench.iconTheme": "symbols", | |
"update.mode": "start", | |
"terminal.integrated.gpuAcceleration": "off", | |
"terminal.integrated.defaultProfile.osx": "fish", | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"window.commandCenter": false, | |
"git.openRepositoryInParentFolders": "always", | |
"symbols.hidesExplorerArrows": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"workbench.editor.empty.hint": "hidden", | |
"update.showReleaseNotes": false, | |
"security.promptForLocalFileProtocolHandling": false, | |
"workbench.activityBar.location": "hidden", | |
"apc.activityBar": { | |
"position": "bottom", | |
"hideSettings": true, | |
"size": 48, | |
"itemMargin": 8, | |
"itemSize": 32 | |
}, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.minimap.enabled": false, | |
"window.titleBarStyle": "native", | |
"apc.header": { | |
"height": 36 | |
}, | |
"apc.listRow": { | |
"height": 24 | |
}, | |
"apc.font.family": "Inter", | |
"apc.stylesheet": { | |
".title-label h2": "display: none !important;", | |
".editor-actions": "display: none", | |
".nosidebar .inline-tabs-placeholder": "width: 75px", | |
".pane-header": "padding: 0 8px", | |
".pane-body": "padding: 8px; height: 100vh;", | |
".split-view-view:first-child .pane-header": "display: none !important;", | |
".monaco-list-row": "border-radius: 4px;", | |
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;", | |
}, | |
"apc.menubar.compact": true, | |
"explorer.sortOrder": "foldersNestsFiles", | |
"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*" | |
}, | |
"explorer.fileNesting.enabled": true, | |
"workbench.colorTheme": "Min Dark", | |
"git.confirmSync": false, | |
"files.autoSave": "afterDelay", | |
"editor.wordWrap": "on", | |
"window.menuBarVisibility": "hidden", | |
"totalTypeScript.hideAllTips": true, | |
"totalTypeScript.hideBasicTips": true, | |
} |
Author
Biguelini
commented
May 31, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment