Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. {
  2. "workbench.colorTheme": "Sublime Material Theme - Dark",
  3. "workbench.iconTheme": "material-icon-theme",
  4. "files.autoSave": "afterDelay",
  5. "sync.gist": "391cc4654dad6810a2e8f6a9680263c4",
  6. "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  7. "[javascript]": {
  8. "editor.defaultFormatter": "esbenp.prettier-vscode"
  9. },
  10. "editor.formatOnPaste": false,
  11. "editor.cursorBlinking": "smooth",
  12. "files.trimFinalNewlines": true,
  13.  
  14. //Laravel Blade Snippets
  15. "emmet.triggerExpansionOnTab": true, // enable tab to expanse emmet tags
  16. "blade.format.enable": true, // if you would like to enable blade format
  17. "emmet.includeLanguages": {
  18. "blade": "html"
  19. },
  20. "window.zoomLevel": 0,
  21. "[css]": {
  22. "editor.defaultFormatter": "esbenp.prettier-vscode"
  23. },
  24. "[html]": {
  25. "editor.defaultFormatter": "esbenp.prettier-vscode"
  26. },
  27.  
  28. //Fira code font configuration
  29. "editor.formatOnSave": true,
  30. "editor.fontFamily": "Fira Code",
  31. "editor.fontSize": 13.5,
  32.  
  33. //VS Code theme customization
  34. "workbench.colorCustomizations": {
  35. "sideBar.background": "#21252b",
  36. "editor.background": "#282c34",
  37. "sideBarSectionHeader.background": "#21252b",
  38. "list.inactiveSelectionBackground": "#0e4b6bd7",
  39. "activityBar.background": "#21252b",
  40. "titleBar.activeBackground": "#21252b",
  41. "tab.activeBackground": "#0e4b6bd7",
  42. "tab.inactiveBackground": "#282c34",
  43. "tab.unfocusedHoverBackground": "#0e4b6bd7",
  44. "menu.background": "#282c34",
  45. },
  46.  
  47. "highlight-matching-tag.styles": {
  48. "opening": {
  49. "name": {
  50. "underline": "#ccff00"
  51. }
  52. }
  53. },
  54. "editor.fontLigatures": true,
  55.  
  56.  
  57. //End
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement