Skip to content

Instantly share code, notes, and snippets.

@LearnWebCode
Created March 4, 2024 02:16
Show Gist options
  • Save LearnWebCode/e9e84f7a47b01d3dfa06d2d038dd4563 to your computer and use it in GitHub Desktop.
Save LearnWebCode/e9e84f7a47b01d3dfa06d2d038dd4563 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