Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. {
  2. "php.validate.executablePath": "C:/php/php.exe",
  3. "php.executablePath": "C:/php/php.exe",
  4. "files.associations": {
  5. "*.tpl": "html",
  6. "*.dash": "yaml",
  7. "*.vue": "vue"
  8. },
  9. "editor.fontSize": 12,
  10. "files.autoSave": "onFocusChange",
  11. "editor.multiCursorModifier": "ctrlCmd",
  12. "editor.snippetSuggestions": "top",
  13. "editor.formatOnPaste": true,
  14. "php.validate.run": "onType",
  15. "editor.tabCompletion": true,
  16. "workbench.colorTheme": "Monokai",
  17. "editor.quickSuggestions": {
  18. "other": true,
  19. "comments": false,
  20. "strings": false
  21. },
  22. "workbench.colorCustomizations": {
  23. "activityBarBadge.background":"#006bb3",
  24. "statusBar.background":"#0287df",
  25. "statusBar.debuggingBackground":"#b80000"
  26. },
  27. "workbench.startupEditor": "welcomePage",
  28. "workbench.editor.enablePreviewFromQuickOpen": true,
  29. "telemetry.enableTelemetry": false,
  30. "git.autofetch": true,
  31. "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  32. // "terminal.integrated.shell.windows": "wsl.exe",
  33. // "terminal.integrated.shell.windows": "cmd.exe",
  34. // "terminal.integrated.shellArgs.windows": [
  35. // "/k",
  36. // "C:\\cmder\\vendor\\init.bat"
  37. // ],
  38. "git.enableSmartCommit": true,
  39. "git.confirmSync": false,
  40. "breadcrumbs.enabled": true,
  41. "javascript.updateImportsOnFileMove.enabled": "always",
  42. "workbench.iconTheme": "vscode-icons"
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement