Skip to content

Instantly share code, notes, and snippets.

@black-adm
Last active September 4, 2024 20:43
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 )
{
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 11,
"y": 10
},
"frame": false
},
"apc.font.family": "'Inter', 'sans-serif'",
"apc.header": {
"height": 35,
},
"apc.listRow": {
"height": 24,
"fontSize": 13
},
"apc.stylesheet": {
".editor-actions": "display: none;",
".monaco-list-row": "border-radius: 4px;",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;",
".monaco-dropdown .dropdown-label": "display: none;",
".nosidebar .inline-tabs-placeholder": "width: 75px;",
".pane-body": "padding: 8px;",
".pane-header": "padding: 0 8px;",
".split-view-view:first-child .pane-header": "display: none !important;",
".title-label > h2": "display: none;",
},
"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.cursorStyle": "line",
"editor.cursorBlinking": "phase",
"editor.fontFamily": "JetBrains Mono",
// "editor.fontFamily": "Cascadia Code",
"editor.fontWeight": "normal",
"editor.fontSize": 14,
"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": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[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
},
"editor.linkedEditing": 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": 12,
"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": {
"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",
},
"workbench.editor.labelFormat": "short",
"workbench.editor.showTabs": "multiple",
"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,
"git.autofetch": true,
"prisma.showPrismaDataPlatformNotification": false,
"workbench.colorTheme": "Vercel Theme",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment