Skip to content

Instantly share code, notes, and snippets.

@andrealvimc
Last active June 28, 2024 17:04
Show Gist options
  • Save andrealvimc/909347a0f9dadcbdb47d517ccff084dc to your computer and use it in GitHub Desktop.
Save andrealvimc/909347a0f9dadcbdb47d517ccff084dc to your computer and use it in GitHub Desktop.
Visual Studio Code config
{
"workbench.colorTheme": "Min Dark",
"symbols.hidesExplorerArrows": false,
"workbench.iconTheme": "symbols",
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"editor.rulers": [80, 120],
"workbench.startupEditor": "newUntitledFile",
"editor.renderLineHighlight": "gutter",
"editor.fontLigatures": true,
"workbench.editor.labelFormat": "short",
"explorer.compactFolders": false,
"editor.semanticHighlighting.enabled": false,
"breadcrumbs.enabled": false,
"workbench.activityBar.location": "hidden",
"editor.minimap.enabled": false,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"workbench.statusBar.visible": false,
"window.titleBarStyle": "custom",
"apc.electron": {
// MAC OS
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 11,
"y": 10
}
},
"apc.header": {
"height": 36
},
"apc.listRow": {
"height": 24
},
"apc.stylesheet": {
".title-label > h2": "display: none",
".editor-actions": "display: none",
// ".nosidebar .inline-tabs-placeholder": "width: 75px",
".pane-header": "padding: 0 8px",
".pane-body": "padding: 8px",
".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.font.family": "Inter",
"workbench.layoutControl.enabled": false,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
// "*.ts": "${capture}.js",
// "*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
// "*.jsx": "${capture}.js",
// "*.tsx": "${capture}.ts",
// "tsconfig.json": "tsconfig.*.json",
// "package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb",
"package.json": ".eslint*, prettier*, tsconfig*, vite, pnpm-lock*, package-lock*, bun.lockb, yarn*",
"tailwind.config*": "tailwind.config*, postcss.config*",
".env.local": ".env*",
".env": ".env*"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"terminal.integrated.defaultProfile.osx": "zsh",
"prisma.showPrismaDataPlatformNotification": false,
"[prisma]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Prisma.prisma"
},
"github.copilot.editor.enableAutoCompletions": true,
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment