Skip to content

Instantly share code, notes, and snippets.

@LearnWebCode
Last active September 8, 2022 02:06
Show Gist options
  • Save LearnWebCode/410cd2780a8d59bb319b65c61746c86d to your computer and use it in GitHub Desktop.
Save LearnWebCode/410cd2780a8d59bb319b65c61746c86d to your computer and use it in GitHub Desktop.
My personal Visual Studio Code settings
{
"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