Skip to content

Instantly share code, notes, and snippets.

@mknparreira
Last active August 12, 2021 22:24
Show Gist options
  • Save mknparreira/2dc19c3f920f09b9a442b1409ab2f38f to your computer and use it in GitHub Desktop.
Save mknparreira/2dc19c3f920f09b9a442b1409ab2f38f to your computer and use it in GitHub Desktop.
Visual Studio Code | settings.json
{
    "workbench.colorTheme": "Monokai",
    "files.autoSave": "onFocusChange",
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.autoClosingBrackets": "always",
    "editor.autoClosingQuotes": "always",
    "editor.mouseWheelZoom": true,
    "workbench.editor.highlightModifiedTabs": true,
    "workbench.editor.enablePreview": false,
    "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
    "phpformatter.notifications": false,
    "prettier.arrowParens": "always",
    "explorer.confirmDelete": false,
    "phpcs.executablePath": "./htdocs/vendor/bin/phpcs.bat",
    "phpunit.args": [
        "--configuration", "./htdocs/phpunit.xml",
        "--testdox"
    ],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment