Skip to content

Instantly share code, notes, and snippets.

@abr4xas
Last active October 14, 2018 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abr4xas/c31e1ffd84775d9b87048d8f4079fc72 to your computer and use it in GitHub Desktop.
Save abr4xas/c31e1ffd84775d9b87048d8f4079fc72 to your computer and use it in GitHub Desktop.
VSC user settings
// Place your settings in this file to overwrite the default settings
{
"window.zoomLevel": 0,
"extensions.ignoreRecommendations": false,
"editor.multiCursorModifier": "ctrlCmd",
"workbench.colorTheme": "Laracasts Contrast (rainglow)",
"files.autoSave": "onFocusChange",
"editor.minimap.enabled": false,
"workbench.startupEditor": "newUntitledFile",
"phpformatter.composer": true,
"emmet.syntaxProfiles": {
"blade": "html"
},
"emmet.triggerExpansionOnTab": true,
"beautify.language": {
"html": [
"htm",
"html",
"blade",
"php",
"xml",
"vue",
"edge",
]
},
"emmet.includeLanguages": {
"edge": "html"
},
"explorer.confirmDelete": false,
"namespaceResolver.exclude": "**/node_modules/**",
"namespaceResolver.showMessageOnStatusBar": false,
"namespaceResolver.autoSort": true,
"namespaceResolver.sortAlphabetically": false,
"namespaceResolver.leadingSeparator": true,
"editor.wordWrap": "on",
"explorer.openEditors.visible": 0,
"php-cs-fixer.executablePath": "php-cs-fixer",
"php-cs-fixer.autoFixByBracket": true,
"php-cs-fixer.autoFixBySemicolon": false,
"php-cs-fixer.rules": "@PSR2",
"php.validate.enable": true,
"php.validate.executablePath": "/usr/bin/php",
"php.validate.run": "onType",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"html.format.indentInnerHtml": true,
"blade.format.enable": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment