Guest User

Untitled

a guest
Jul 23rd, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. # My Awesome VS Code
  2. My Awesome Laravel VS Code Plugin
  3.  
  4. # Plugin
  5. 01. Advanced New File by patbenatar
  6. 02. Beautify by HookyQR
  7. 03. Bootstrap 4 & Font awesome snippets by Ashok Koyi
  8. 04. CSS Auto Prefix by sporiley
  9. 05. ESLint by Dirk Baeumer
  10. 06. Import Cost by Wix
  11. 07. IntelliSense for CSS class names by Zignd
  12. 08. JS-CSS-HTML Formatter by lonefy
  13. 09. Laravel 5 Snippets by Winnie Lin
  14. 10. Laravel Artisan by Ryan Naddy
  15. 11. Laravel Blade Snippets by Winnie Lin
  16. 12. Live Sass Compiler by Ritwick Dey
  17. 13. Live Server by Ritwick Dey
  18. 14. Path Autocomplete by Mihai Vilcu
  19. 15. php cs fixer by junstyle
  20. 16. PHP Intelephense by Ben Mewburn
  21. 17. Slime Theme by smlombardi
  22. 18. snippet-creator by nikitaKunevich
  23. 19. Sublime Text Keymap by Microsoft
  24. 20. Vetur by Pine Wu
  25. 21. vscode-icons by Roberto Huertas
  26. 22. Vue VSCode Snippets by sarah.drasner
  27.  
  28. # php cs fixer install in windows by composer
  29. > $ composer global require friendsofphp/php-cs-fixer
  30.  
  31. > $ export PATH="$PATH:$HOME/.composer/vendor/bin"
  32.  
  33. Done. then config your settings
  34.  
  35. "php-cs-fixer.executablePath": "php-cs-fixer.bat",
  36.  
  37. Create a file ".php_cs" & save all config from plugin page. then again setup file path.
  38.  
  39. "php-cs-fixer.config": "C:\\Program Files\\Microsoft VS Code\\.php_cs",
  40.  
  41. # ESLint install in windows by npm
  42. Ctrl+Shift+P create ESLint ".eslintrc.json" file in projectfile then import this code:
  43.  
  44. "extends": [
  45. "eslint:recommended",
  46. "plugin:vue/recommended"
  47. ],
  48.  
  49. # My Settings
  50. {
  51. "workbench.statusBar.visible": false,
  52. "workbench.activityBar.visible": false,
  53. "workbench.startupEditor": "newUntitledFile",
  54. "editor.fontSize": 15,
  55. "editor.smoothScrolling": true,
  56. "editor.multiCursorModifier": "ctrlCmd",
  57. "editor.snippetSuggestions": "top",
  58. "editor.formatOnPaste": true,
  59. "editor.wordWrap": "on",
  60. "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  61. "sublimeTextKeymap.promptV3Features": true,
  62. "workbench.colorTheme": "Slime",
  63. "workbench.iconTheme": "vscode-icons",
  64. "php-cs-fixer.executablePathWindows": "php-cs-fixer.bat",
  65. "php-cs-fixer.config": "C:\\Program Files\\Microsoft VS Code\\.php_cs",
  66. "php-cs-fixer.onsave": true,
  67. "editor.tabCompletion": true,
  68. "window.openFilesInNewWindow": "on",
  69. "php.suggest.basic": false,
  70. "emmet.triggerExpansionOnTab": true,
  71. "eslint.autoFixOnSave": true,
  72. "importCost.typescriptExtensions": [
  73. "\\.vue?$"
  74. ],
  75. }
  76.  
  77. That's it :)
Add Comment
Please, Sign In to add comment