Last active
October 15, 2025 12:25
-
-
Save black-adm/3077ae9c646cb92ad7065bdd39dd639c to your computer and use it in GitHub Desktop.
Configuration ( VSCODE )
This file contains hidden or 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
| { | |
| "biome.suggestInstallingGlobally": false, | |
| "breadcrumbs.enabled": false, | |
| "chat.commandCenter.enabled": false, | |
| "code-runner.executorMap": { | |
| "python": "clear ; python -u", | |
| }, | |
| "code-runner.runInTerminal": true, | |
| "code-runner.ignoreSelection": true, | |
| "editor.acceptSuggestionOnCommitCharacter": false, | |
| "editor.accessibilitySupport": "off", | |
| "editor.codeActions.triggerOnFocusChange": true, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": "explicit", | |
| "source.organizeImports": "explicit", | |
| "source.fixAll.biome": "explicit", | |
| "source.organizeImports.biome": "explicit", | |
| }, | |
| "editor.cursorStyle": "line", | |
| "editor.cursorBlinking": "phase", | |
| "editor.defaultFormatter": "vscode.typescript-language-features", | |
| "editor.fontFamily": "Cascadia Code", | |
| "editor.fontWeight": "400", | |
| "editor.fontSize": 15, | |
| "editor.fontLigatures": true, | |
| "editor.formatOnSave": true, | |
| "editor.hideCursorInOverviewRuler": true, | |
| "editor.largeFileOptimizations": false, | |
| "editor.lineHeight": 1.8, | |
| "editor.linkedEditing": true, | |
| "editor.minimap.enabled": false, | |
| "editor.parameterHints.enabled": false, | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.scrollbar.vertical": "hidden", | |
| "editor.scrollbar.horizontal": "hidden", | |
| "editor.semanticHighlighting.enabled": false, | |
| "editor.suggestSelection": "first", | |
| "editor.tabSize": 2, | |
| "editor.language.brackets": [], | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| }, | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx" | |
| }, | |
| "eslint.validate": [ | |
| "javascript", | |
| "javascriptreact", | |
| "typescript", | |
| "typescriptreact" | |
| ], | |
| "explorer.compactFolders": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "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*", | |
| "*.component.ts": "${capture}.component.*", | |
| "*.service.ts": "${capture}.service.*", | |
| ".env.local": ".env*", | |
| ".env": ".env*", | |
| }, | |
| "explorer.sortOrder": "foldersNestsFiles", | |
| "extensions.ignoreRecommendations": true, | |
| "files.autoSave": "off", | |
| "files.associations": { | |
| ".env.*": "dotenv", | |
| ".prettierrc": "json", | |
| "*.css": "css" | |
| }, | |
| "files.exclude": { | |
| "**\/CVS": true, | |
| "**\/.DS_Store": true, | |
| "**\/.hg": true, | |
| "**\/.svn": true, | |
| "**\/.git": true, | |
| ".vscode": true | |
| }, | |
| "github.copilot.enable": { | |
| "*": false | |
| }, | |
| "git.enableSmartCommit": true, | |
| "git.openRepositoryInParentFolders": "always", | |
| "git.autofetch": true, | |
| "glassit.alpha": 255, | |
| "gopls": { | |
| "ui.semanticTokens": true | |
| }, | |
| "go.toolsManagement.autoUpdate": true, | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "prettier.endOfLine": "auto", | |
| "prettier.bracketSpacing": true, | |
| "python.analysis.typeCheckingMode": "strict", | |
| "security.allowedUNCHosts": [ | |
| "wsl.localhost", | |
| "wsl$" | |
| ], | |
| "security.promptForLocalFileProtocolHandling": false, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "security.workspace.trust.enabled": false, | |
| "symbols.hidesExplorerArrows": false, | |
| "symbols.files.associations": { | |
| "*.component.ts": "angular", | |
| "*.controller.ts": "nest", | |
| "*.decorator.ts": "nest", | |
| ".env.example": "gear", | |
| "*.e2e-spec.ts": "ts-test", | |
| "*.guard.ts": "nest", | |
| "*.module.ts": "nest", | |
| "*.pipe.ts": "nest", | |
| "*.service.ts": "nest", | |
| "*.spec.ts": "ts-test", | |
| "vitest.config.e2e.ts": "vite" | |
| }, | |
| "terminal.integrated.defaultProfile.osx": "zsh", | |
| "terminal.integrated.env.linux": { | |
| "FIG_NEW_SESSION": "1" | |
| }, | |
| "terminal.integrated.env.windows": {}, | |
| "terminal.integrated.fontSize": 12, | |
| "terminal.integrated.fontFamily": "JetBrainsMono Nerd Font", | |
| "terminal.integrated.fontLigatures.enabled": true, | |
| "terminal.integrated.gpuAcceleration": "off", | |
| "terminal.integrated.enableMultiLinePasteWarning": "never", | |
| "terminal.integrated.showExitAlert": false, | |
| "terminal.integrated.stickyScroll.enabled": false, | |
| "typescript.suggest.autoImports": true, | |
| "typescript.tsserver.log": "off", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "update.mode": "start", | |
| "update.showReleaseNotes": false, | |
| "vscode_custom_css.imports": [ | |
| "file:///C:/Users/blackadm/.vscode/global-styles.css" | |
| ], | |
| "window.commandCenter": false, | |
| "window.menuBarVisibility": "hidden", | |
| "window.titleBarStyle": "custom", | |
| "workbench.activityBar.location": "hidden", | |
| "workbench.colorTheme": "Vesper", | |
| "workbench.editor.labelFormat": "short", | |
| "workbench.editor.showTabs": "multiple", | |
| "workbench.iconTheme": "symbols", | |
| "workbench.layoutControl.enabled": false, | |
| "workbench.productIconTheme": "fluent-icons", | |
| "workbench.settings.applyToAllProfiles": [ | |
| "editor.fontFamily", | |
| "console-ninja.toolsToEnableSupportAutomaticallyFor", | |
| "workbench.colorCustomizations" | |
| ], | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.statusBar.visible": false, | |
| "workbench.secondarySideBar.defaultVisibility": "hidden", | |
| "workbench.colorCustomizations": { | |
| "editor.background": "#000", | |
| "editorGroupHeader.tabsBackground": "#000", | |
| "editorWidget.background": "#000", | |
| "input.background": "#000", | |
| "list.hoverBackground": "#000", | |
| "list.activeSelectionBackground": "#000", | |
| "list.inactiveSelectionBackground": "#000", | |
| "sideBar.background": "#000", | |
| "sideBarTitle.foreground": "#000", | |
| "tab.activeBackground": "#000", | |
| "tab.inactiveBackground": "#000", | |
| "terminal.background": "#000", | |
| "titleBar.activeBackground": "#000", | |
| "titleBar.activeForeground": "#fff", | |
| "titleBar.inactiveBackground": "#000", | |
| "titleBar.inactiveForeground": "#000" | |
| }, | |
| "workbench.sideBar.location": "right", | |
| "[go]": { | |
| "editor.defaultFormatter": "golang.go", | |
| "editor.formatOnSave": true | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "[prisma]": { | |
| "editor.formatOnSave": true, | |
| "editor.defaultFormatter": "Prisma.prisma" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "biomejs.biome" | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment