Created
March 4, 2024 02:16
-
-
Save LearnWebCode/e9e84f7a47b01d3dfa06d2d038dd4563 to your computer and use it in GitHub Desktop.
My 2024 VS Code Settings As of March
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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