Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. {
  2. "workbench.startupEditor": "newUntitledFile",
  3. "workbench.statusBar.visible": true,
  4. "workbench.activityBar.visible": true,
  5. "workbench.colorCustomizations": {
  6. "tab.activeBorder": "#fff",
  7. "tab.activeBackground": "#030303",
  8. },
  9. "editor.fontSize": 14.5,
  10. "editor.fontLigatures": true,
  11. "editor.fontFamily": "Dank Mono, Oprator Mono Medium, Fira Mono Code, Fira Code, Operator Mono, Dank Mono, Monaco, 'Courier New', monospace",
  12. "workbench.colorTheme": "Noctis Minimus",
  13. "window.zoomLevel": 1,
  14. "editor.wordWrap": "on",
  15. "editor.renderLineHighlight": "gutter",
  16. "editor.formatOnSave": true,
  17. "editor.occurrencesHighlight": false,
  18. "eslint.autoFixOnSave": true,
  19. "workbench.iconTheme": "material-icon-theme",
  20. "liveServer.settings.donotShowInfoMsg": true,
  21. "explorer.confirmDelete": false,
  22. "emmet.includeLanguages": {
  23. "javascript": "javascriptreact"
  24. },
  25. "prettier.arrowParens": "always",
  26. "explorer.confirmDragAndDrop": false,
  27. "editor.minimap.enabled": false,
  28. "breadcrumbs.enabled": false,
  29. "terminal.integrated.cursorStyle": "line",
  30. "editor.cursorBlinking": "expand",
  31. "files.autoSave": "off",
  32. "[javascript]": {
  33. "editor.defaultFormatter": "esbenp.prettier-vscode"
  34. },
  35. "[json]": {
  36. "editor.defaultFormatter": "esbenp.prettier-vscode"
  37. },
  38. "[html]": {
  39. "editor.defaultFormatter": "esbenp.prettier-vscode"
  40. },
  41. "[jsonc]": {
  42. "editor.defaultFormatter": "esbenp.prettier-vscode"
  43. },
  44. "prettier.trailingComma": "all",
  45. "editor.tabSize": 2,
  46. "prettier.quoteProps": "consistent",
  47. "files.associations": {
  48. "*.graphql": "graphql"
  49. },
  50. "showMusicMetrics": false,
  51. "showGitMetrics": false,
  52. "showWeeklyRanking": false,
  53. "[javascriptreact]": {
  54. "editor.defaultFormatter": "esbenp.prettier-vscode"
  55. },
  56. "explorer.openEditors.visible": 2,
  57. "javascript.updateImportsOnFileMove.enabled": "always"
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement