Created
October 4, 2017 23:45
-
-
Save oriolrivera/b31bf3d740fe382d0fcea66b9c1c4025 to your computer and use it in GitHub Desktop.
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
Add this at the end of php.ini: | |
[XDebug] | |
xdebug.remote_enable = 1 | |
xdebug.remote_autostart = 1 | |
--------------------------------------------------------------------------------- | |
Add this to vs code settings file: | |
// Place your settings in this file to overwrite the default settings | |
{ | |
"window.zoomLevel": 0, | |
"window.openFilesInNewWindow": "off", | |
"files.autoSave": "afterDelay", | |
"editor.wrappingColumn": 0, | |
"window.restoreFullscreen": true, | |
"editor.renderIndentGuides": true, | |
"editor.mouseWheelZoom": true, | |
"php.validate.enable": true, | |
"php.validate.executablePath": "c:\\xampp\\php\\php.exe", | |
"php.validate.run": "onType", | |
"workbench.welcome.enabled": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment