Last active
January 8, 2019 19:26
-
-
Save tjgazel/3cf8eba9cbea5b06bd678c81b2e0fdcb to your computer and use it in GitHub Desktop.
My config for Visual Studio Code
This file contains 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
{ | |
"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