Skip to content

Instantly share code, notes, and snippets.

@juizmill
Last active November 15, 2019 16:06
Show Gist options
  • Save juizmill/a732871c883d79ddd365fe994217e13b to your computer and use it in GitHub Desktop.
Save juizmill/a732871c883d79ddd365fe994217e13b to your computer and use it in GitHub Desktop.
Configuração VSCODE para PHP
{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 18,
"explorer.openEditors.visible": 0,
"workbench.editor.enablePreview": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"editor.wordWrap": "off",
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"debug.inlineValues": true,
"debug.enableAllHovers": true,
"workbench.list.openMode": "doubleClick",
"explorer.confirmDelete": false,
"emmet.triggerExpansionOnTab": false, // enable tab to expanse emmet tags
"files.associations": {
".php_cs": "php",
".php_cs.dist": "php",
"*.php": "php" // this is super important, otherwise intelephense will not auto-index your project.
},
"emmet.includeLanguages": {
"blade.php": "html",
"vue": "html"
},
"files.exclude": {
"**/.php_cs.cache": true,
"**/.vscode": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/public": true,
"**/storage": true,
"**/.git": true,
"**/.vscode": true
},
"workbench.startupEditor": "none",
"editor.renderControlCharacters": false,
"editor.renderLineHighlight": "none",
"editor.lineNumbers": "on",
"explorer.autoReveal": false,
"workbench.activityBar.visible": true,
"editor.detectIndentation": false,
"editor.autoIndent": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.renderWhitespace": "all",
"editor.fontWeight": "bold",
"terminal.integrated.shell.osx": "/bin/zsh",
"editor.fontLigatures": true,
"files.watcherExclude": {
"**/.git/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.vscode": true
},
"editor.rulers": [
100,
120
],
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.tabCompletion": "on",
"vsicons.dontShowNewVersionMessage": true,
"editor.minimap.enabled": false,
"workbench.sideBar.location": "left",
"editor.largeFileOptimizations": false,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Dracula",
"phpcs.executablePath": "/home/SEU-USUARIO/.composer/vendor/bin/phpcs",
"php.suggest.basic": false,
"php-cs-fixer.executablePath": "/home/SEU-USUARIO/.composer/vendor/bin/php-cs-fixer",
"editor.formatOnSaveTimeout": 5000,
"php-cs-fixer.formatHtml": true,
"[php]": {
"editor.defaultFormatter": "junstyle.php-cs-fixer"
},
"php-cs-fixer.autoFixBySemicolon": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment