Skip to content

Instantly share code, notes, and snippets.

@jleonardolemos
Last active October 4, 2019 21:33
Show Gist options
  • Save jleonardolemos/35a0b0e812c190481c96515188a7fc7c to your computer and use it in GitHub Desktop.
Save jleonardolemos/35a0b0e812c190481c96515188a7fc7c to your computer and use it in GitHub Desktop.
my vscode configs
{
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 20,
"workbench.colorTheme": "Material Theme Darker",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": false,
"breadcrumbs.enabled": true,
"workbench.editor.highlightModifiedTabs": true,
"debug.console.fontSize": 20,
"terminal.integrated.fontSize": 20,
"search.useIgnoreFiles": false,
"window.zoomLevel": 0,
"editor.fontFamily": "'comfortaa', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.letterSpacing": 1.2,
"editor.lineHeight": 35,
"terminal.integrated.fontFamily": "monospace",
"workbench.panel.defaultLocation": "right",
"php-cs-fixer.executable": "/usr/local/bin/php-cs-fixer",
"php-cs-fixer.configFile:": "~/.php_cs",
"php-cs-fixer.onSave": true,
"emeraldwalk.runonsave": {
"commands": [
{
"match": "\\.php$",
"isAsync": true,
"cmd": "${workspaceFolder}/vendor/bin/envoy run restart-listeners --env=local"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment