Skip to content

Instantly share code, notes, and snippets.

@juizmill
Created March 11, 2019 17:09
Show Gist options
  • Select an option

  • Save juizmill/50cfd8a0373d217997fca7263c3bf22b to your computer and use it in GitHub Desktop.

Select an option

Save juizmill/50cfd8a0373d217997fca7263c3bf22b to your computer and use it in GitHub Desktop.
Minha configuração padrão do VS code
{
"editor.fontSize": 16,
"explorer.openEditors.visible": 0,
"workbench.editor.enablePreview": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"editor.wordWrap": "off",
"editor.formatOnPaste": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"debug.inlineValues": true,
"debug.enableAllHovers": true,
"workbench.list.openMode": "doubleClick",
"explorer.confirmDelete": false,
"emmet.triggerExpansionOnTab": true, // 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
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/public": true,
"**/storage": true
},
"workbench.startupEditor": "none",
"editor.renderControlCharacters": false,
"editor.renderLineHighlight": "none",
"editor.matchBrackets": false,
"editor.lineNumbers": "on",
"disableLigatures.mode": "Cursor",
"explorer.autoReveal": false,
"workbench.activityBar.visible": true,
"editor.detectIndentation": false,
"editor.autoIndent": false,
"workbench.colorTheme": "Cobalt2",
"php.suggest.basic": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.renderWhitespace": "all"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment