Last active
September 8, 2022 02:06
-
-
Save LearnWebCode/410cd2780a8d59bb319b65c61746c86d to your computer and use it in GitHub Desktop.
My personal Visual Studio Code settings
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
{ | |
"php.validate.executablePath": "/usr/local/bin/php", | |
"editor.minimap.enabled": false, | |
"editor.fontSize": 16, | |
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace", | |
"terminal.integrated.fontSize": 16, | |
"workbench.editor.showTabs": true, | |
"editor.hover.enabled": false, | |
"editor.tabSize": 2, | |
"telemetry.telemetryLevel": "off", | |
"editor.parameterHints.enabled": false, | |
"security.workspace.trust.enabled": false, | |
"debug.javascript.codelens.npmScripts": "never", | |
"workbench.statusBar.visible": true, | |
"breadcrumbs.enabled": false, | |
"files.associations": { | |
"*.js": "javascriptreact", | |
"*.css": "tailwindcss" | |
}, | |
"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", | |
"workbench.startupEditor": "none", | |
"workbench.editor.untitled.hint": "hidden", | |
"files.exclude": { | |
"**/.DS_Store": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment