Skip to content

Instantly share code, notes, and snippets.

@LearnWebCode
Created December 10, 2024 21:08
Show Gist options
  • Save LearnWebCode/03d97076768f3f357c362bb47a6795ab to your computer and use it in GitHub Desktop.
Save LearnWebCode/03d97076768f3f357c362bb47a6795ab to your computer and use it in GitHub Desktop.
My VS Code settings.json as of December 2024
{
"apc.sidebar.titlebar": {
"height": 8,
"fontSize": 0.000000000000000001
},
"apc.electron": {
"titleBarStyle": "hidden",
"frame": false
},
//"window.titleBarStyle": "native",
//"window.customTitleBarVisibility": "never",
// "editor.fontFamily": "'Monaco', monospace",
"editor.fontSize": 16,
"terminal.integrated.fontSize": 16,
"editor.lightbulb.enabled": "off",
"editor.smoothScrolling": true,
"editor.hideCursorInOverviewRuler": true,
// "workbench.sideBar.location": "right",
"editor.guides.indentation": false,
"editor.renderWhitespace": "none",
"debug.javascript.codelens.npmScripts": "never",
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"breadcrumbs.enabled": false,
"workbench.startupEditor": "none",
// "editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"prettier.semi": false,
"prettier.printWidth": 999,
"prettier.trailingComma": "none",
"prettier.quoteProps": "preserve",
"prettier.arrowParens": "avoid",
"files.associations": {
// "*.js": "javascriptreact",
// "*.css": "tailwindcss"
},
// "editor.quickSuggestions": {
// "strings": true
// },
"workbench.layoutControl.enabled": false,
"window.commandCenter": false,
// "editor.hover.enabled": false
// "telemetry.telemetryLevel": "off",
// "editor.parameterHints.enabled": false,
"extensions.ignoreRecommendations": true,
"security.workspace.trust.enabled": false,
// "editor.guides.indentation": false,
"workbench.editor.empty.hint": "hidden",
"html.autoClosingTags": false,
"editor.stickyScroll.enabled": false,
// "editor.linkedEditing": true,
"workbench.iconTheme": null,
"codeium.enableConfig": {
"*": true,
"tailwindcss": 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",
"*.sqlite": "${capture}.${extname}-*",
"*.db": "${capture}.${extname}-*",
"*.sqlite3": "${capture}.${extname}-*",
"*.db3": "${capture}.${extname}-*",
"*.sdb": "${capture}.${extname}-*",
"*.s3db": "${capture}.${extname}-*"
},
"workbench.statusBar.visible": false,
// "workbench.colorTheme": "Catppuccin Macchiato",
// "workbench.sideBar.location": "right",
"codeium.enableCodeLens": false
// "workbench.colorTheme": "Catppuccin Macchiato"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment