Skip to content

Instantly share code, notes, and snippets.

@GusAntoniassi
Created August 14, 2019 13:52
Show Gist options
  • Save GusAntoniassi/18d0d07147d0ea7d2b1c518f1485e8fa to your computer and use it in GitHub Desktop.
Save GusAntoniassi/18d0d07147d0ea7d2b1c518f1485e8fa to your computer and use it in GitHub Desktop.
VSCode Settings
{
"window.zoomLevel": 0,
"php.suggest.basic": false,
"php.validate.enable": true,
"php.validate.run": "onType",
"files.associations": {
"*.phpt": "php",
"*.html": "twig"
},
"emmet.includeLanguages": {
"twig": "html"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/data/cache/DoctrineEntityProxy": true
},
"search.exclude": {
"**/vendor": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.smoothScrolling": true,
"explorer.openEditors.visible": 0,
"editor.minimap.enabled": false,
"extensions.ignoreRecommendations": false,
"local-history.path": "/home/user/.vscode/",
"local-history.exclude": [
"**/.history/**",
"**/.vscode**",
"**/node_modules/**",
"**/typings/**",
"**/out/**",
"**/vendor/**"
],
"explorer.confirmDragAndDrop": false,
"git.autofetch": true,
"window.titleBarStyle": "custom",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"highlight-matching-tag.styles": {
"opening": {
"full": {
"highlight": "rgba(255, 255, 0, 0.1)"
}
},
},
"sftp.printDebugLog": true,
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "twig",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment