Skip to content

Instantly share code, notes, and snippets.

@bogwero
Forked from LearnWebCode/settings.json
Created March 14, 2024 15:57
Show Gist options
  • Select an option

  • Save bogwero/b1acfa7ffebeda21627b47366d5839f0 to your computer and use it in GitHub Desktop.

Select an option

Save bogwero/b1acfa7ffebeda21627b47366d5839f0 to your computer and use it in GitHub Desktop.
My 2024 VS Code Settings As of March
{
"debug.javascript.codelens.npmScripts": "never",
"editor.fontFamily": "'Monaco', monospace",
"terminal.integrated.fontFamily": "'Monaco', monospace",
"editor.fontSize": 16,
"terminal.integrated.fontSize": 16,
"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": 9999,
"prettier.trailingComma": "none",
"prettier.quoteProps": "preserve",
"prettier.arrowParens": "avoid",
"files.associations": {
// "*.js": "javascriptreact",
"*.css": "tailwindcss"
},
// "editor.quickSuggestions": {
// "strings": true
// },
"workbench.iconTheme": null,
"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,
"workbench.colorTheme": "Catppuccin Frappé"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment