Last active
October 4, 2019 21:33
-
-
Save jleonardolemos/35a0b0e812c190481c96515188a7fc7c to your computer and use it in GitHub Desktop.
my vscode configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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