Skip to content

Instantly share code, notes, and snippets.

@black-adm
Last active April 19, 2024 18:10
Show Gist options
  • Save black-adm/3077ae9c646cb92ad7065bdd39dd639c to your computer and use it in GitHub Desktop.
Save black-adm/3077ae9c646cb92ad7065bdd39dd639c to your computer and use it in GitHub Desktop.
Configuration ( VSCODE )
{
"breadcrumbs.enabled": false,
"console-ninja.featureSet": "Community",
"console-ninja.toolsToEnableSupportAutomaticallyFor": {
"live-server-extension": true,
"live-preview-extension": true
},
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.accessibilitySupport": "off",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit",
},
"editor.fontFamily": "Jetbrains Mono",
"editor.fontWeight": "normal",
"editor.fontSize": 13.5,
"editor.fontLigatures": true,
"editor.hideCursorInOverviewRuler": true,
"editor.lineHeight": 1.8,
"editor.minimap.enabled": false,
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.rulers": [
90,
125
],
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.semanticHighlighting.enabled": false,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"eslint.validate": [
"javascript",
"typescript"
],
"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
},
"git.enableSmartCommit": true,
"git.openRepositoryInParentFolders": "always",
"[html]": {
"editor.defaultFormatter": "mohd-akram.vscode-html-format"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"[prisma]": {
"editor.formatOnSave": true
},
"security.promptForLocalFileProtocolHandling": false,
"security.workspace.trust.untrustedFiles": "open",
"security.workspace.trust.enabled": false,
"symbols.hidesExplorerArrows": false,
"symbols.files.associations": {
"*.component.ts": "angular",
".env.example": "gear",
"*.e2e-spec.ts": "ts-test",
"*.guard.ts": "typescript",
"*.module.ts": "angular",
"*.service.ts": "angular",
"*.spec.ts": "ts-test",
"vitest.config.e2e.ts": "vite"
},
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.env.linux": {
"FIG_NEW_SESSION": "1"
},
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"terminal.integrated.gpuAcceleration": "off",
"terminal.integrated.showExitAlert": false,
"typescript.suggest.autoImports": true,
"typescript.tsserver.log": "off",
"typescript.updateImportsOnFileMove.enabled": "always",
"update.mode": "start",
"update.showReleaseNotes": false,
"window.commandCenter": false,
"window.menuBarVisibility": "hidden",
"window.titleBarStyle": "native",
"workbench.activityBar.location": "hidden",
"workbench.colorCustomizations": {
"sideBarTitle.foreground": "#000000",
"editor.background": "#000000",
"editorGroupHeader.tabsBackground": "#000000",
"editorWidget.background": "#000000",
"input.background": "#000000",
"list.hoverBackground": "#000000",
"list.activeSelectionBackground": "#000000",
"list.inactiveSelectionBackground": "#000000",
"sideBar.background": "#000000",
"tab.activeBackground": "#000000",
"tab.inactiveBackground": "#000000",
},
"workbench.editor.labelFormat": "short",
"workbench.iconTheme": "symbols",
"workbench.layoutControl.enabled": false,
"workbench.productIconTheme": "fluent-icons",
"workbench.sideBar.location": "right",
"workbench.settings.applyToAllProfiles": [
"editor.fontFamily",
"console-ninja.toolsToEnableSupportAutomaticallyFor"
],
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.visible": false,
"security.allowedUNCHosts": [
"wsl.localhost"
],
"terminal.integrated.env.windows": {},
"editor.largeFileOptimizations": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"git.autofetch": true,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.colorTheme": "Vesper ++",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment