Skip to content

Instantly share code, notes, and snippets.

@aeadedoyin
Created August 26, 2019 09:12
Show Gist options
  • Save aeadedoyin/b64555c828251ee667f06f2db54e1c40 to your computer and use it in GitHub Desktop.
Save aeadedoyin/b64555c828251ee667f06f2db54e1c40 to your computer and use it in GitHub Desktop.
Cool VSCode Settings
{
"php.validate.executablePath": "C:\\xampp\\php\\php.exe",
"php.executablePath": "C:\\xampp\\php\\php.exe",
"php-cs-fixer.executablePath": "php-cs-fixer-v2.phar",
"php-cs-fixer.executablePathWindows": "php-cs-fixer-v2.phar",
"php-cs-fixer.rules": "@PSR2",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"workbench.activityBar.visible": true,
"php.suggest.basic": false,
"workbench.statusBar.visible": true,
"window.menuBarVisibility": "default",
"workbench.sideBar.location": "right",
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": true,
"explorer.confirmDelete": false,
"files.autoSave": "afterDelay",
"diffEditor.renderSideBySide": false,
"files.exclude": {
"**/.git": false,
"**/.gitm": true
},
"terminal.integrated.rendererType": "dom",
"files.associations": {
"*.blade.php": "blade",
"*.php": "php"
},
"update.enableWindowsBackgroundUpdates": false,
"explorer.decorations.badges": false,
"editor.letterSpacing": 1,
"editor.occurrencesHighlight": true,
"workbench.list.horizontalScrolling": true,
"editor.showFoldingControls": "always",
"editor.matchBrackets": true,
"editor.renderIndentGuides": true,
"workbench.iconTheme": "material-icon-theme",
"editor.snippetSuggestions": "bottom",
"editor.autoIndent": true,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"blade": "html"
},
"html-css-class-completion.enableEmmetSupport": true,
"emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly",
"explorer.openEditors.visible": 0,
"editor.minimap.enabled": true,
"editor.tabCompletion": "on",
"editor.cursorBlinking": "phase",
"editor.lineHeight": 40,
"breadcrumbs.enabled": false,
"nativescript.analytics.enabled": true,
"phpcs.standard": "PSR2",
"phpcs.enable": true,
"files.eol": "\n",
"editor.fontSize": 17,
"workbench.colorTheme": "Material Theme Ocean High Contrast",
"editor.fontFamily": "Victor Mono Medium", // "Operator Mono Ssm, Fira Code"
"editor.fontLigatures": true,
"editor.fontWeight": "700",
"liveServer.settings.donotShowInfoMsg": true,
"git.enableSmartCommit": true,
"liveServer.settings.donotVerifyTags": true,
"terminal.integrated.fontWeight": "700",
"editor.largeFileOptimizations": false,
"editor.formatOnType": true,
"blade.format.enable": true,
"extensions.autoUpdate": true,
"editor.multiCursorModifier": "ctrlCmd",
"[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