Skip to content

Instantly share code, notes, and snippets.

@tjgazel
Last active January 8, 2019 19:26
Show Gist options
  • Save tjgazel/3cf8eba9cbea5b06bd678c81b2e0fdcb to your computer and use it in GitHub Desktop.
Save tjgazel/3cf8eba9cbea5b06bd678c81b2e0fdcb to your computer and use it in GitHub Desktop.
My config for Visual Studio Code
{
"workbench.iconTheme": "vscode-icons",
"php.executablePath": "/usr/bin/php",
"php.validate.executablePath": "/usr/bin/php",
"php.suggest.basic": false,
"php-docblocker.qualifyClassNames": true,
"phpfmt.php_bin": "/usr/bin/php",
"blade.format.enable": true,
"breadcrumbs.enabled": true,
"editor.mouseWheelZoom": true,
"editor.wordWrapColumn": 120,
"editor.fontSize": 15,
"editor.tabCompletion": "on",
"editor.autoClosingQuotes": "always",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.multiCursorModifier": "ctrlCmd",
"explorer.autoReveal": false,
"files.associations": {
"*.html": "twig"
},
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html",
"javascript": "html",
"javascriptreact": "html",
"blade": "html",
"twig": "html"
},
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "vue",
"javascriptreact": "jsx",
"javascript": "js",
"typescript": "jsx",
"typescriptreact": "tsx"
},
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": false
},
"prettyhtml": {
"printWidth": 120,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false
}
},
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"prettier.printWidth": 120,
"prettier.singleQuote": true,
"prettier.jsxSingleQuote": true,
"prettier.semi": false,
"html-css-class-completion.enableEmmetSupport": true,
"workbench.quickOpen.closeOnFocusLost": false,
"eslint.autoFixOnSave": true,
"eslint.validate": [{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment