Skip to content

Instantly share code, notes, and snippets.

@bedus-creation
Last active March 13, 2019 06:03
Show Gist options
  • Save bedus-creation/7c293749ba24ca0194495cf2b62a2934 to your computer and use it in GitHub Desktop.
Save bedus-creation/7c293749ba24ca0194495cf2b62a2934 to your computer and use it in GitHub Desktop.
Vscode settings for laravel
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+l",
"command": "better-phpunit.run"
},
{
"key": "cmd+k cmd+p",
"command": "better-phpunit.run-previous"
}
]
{
"php.suggest.basic": false,
"explorer.openEditors.visible": 0,
"workbench.editor.enablePreview": false,
"editor.fontSize": 18,
"workbench.activityBar.visible": false,
"terminal.integrated.fontSize": 17,
"markdown.preview.fontSize": 17,
"window.zoomLevel": 0,
"workbench.statusBar.feedback.visible": false,
"explorer.confirmDelete": false,
"files.exclude": {
"**/node_modules": true,
"**/.vscode": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Schema": true,
"**/bower_components": true,
"**/._*": true,
},
"advancedNewFile.exclude": {
"public/storage": true,
"node_modules": true,
"node_modules_electron": true,
"dev": true,
"dist": true,
"vendor": true
},
"advancedNewFile.showInformationMessages": true,
"advancedNewFile.convenienceOptions": [
"last",
"current",
"root"
],
"search.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/vendor": true,
"**/Schema": true,
"**/node_modules": true,
"**/bower_components": true
},
"emmet.triggerExpansionOnTab": true,
"editor.fontFamily": "'Monaco','Menlo','Fira Code'",
"files.associations": {
".blade.php": "html",
".tpl": "html",
"*.inc_html": "php",
},
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Slime",
"window.titleBarStyle": "native",
"window.menuBarVisibility": "toggle",
"terminal.integrated.rendererType": "dom",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"phpunit.php": "absolute/path/to/php",
"phpunit.phpunit": "path/to/phpunit",
"phpunit.args": [
"--configuration",
"./phpunit.xml"
],
"files.autoSave": "afterDelay",
"python.jediEnabled": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment