Advertisement
Guest User

settings.json

a guest
Feb 22nd, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. {
  2. "window.zoomLevel": 1,
  3. "window.menuBarVisibility": "toggle",
  4.  
  5. // Theme
  6. "workbench.colorTheme": "Dark Lemon Material",
  7. "workbench.colorCustomizations": {},
  8. "color-highlight.markerType": "dot-before",
  9. "workbench.iconTheme": "vscode-seedling-icon-theme",
  10.  
  11. // Font
  12. "editor.fontFamily": "'Fira Code', monospace",
  13. "editor.fontLigatures": true,
  14. "editor.fontWeight": "400",
  15.  
  16. // Extensions
  17. "bracket-pair-colorizer-2.colors": [
  18. "Orchid",
  19. "Gold",
  20. "LightSkyBlue"
  21. ],
  22.  
  23. // "indentRainbow.colors": [
  24. // "rgba(16,16,16,0.2)",
  25. // "rgba(16,16,16,0.4)",
  26. // "rgba(16,16,16,0.6)",
  27. // "rgba(16,16,16,0.8)",
  28. // "rgba(16,16,16,1.0)",
  29. // ],
  30.  
  31. // Cursor
  32. "editor.cursorBlinking": "smooth",
  33. "editor.cursorSmoothCaretAnimation": true,
  34.  
  35. // Formatter (prettier)
  36. "editor.defaultFormatter": "remimarsal.prettier-now",
  37. "editor.formatOnSave": true,
  38. "prettier.printWidth": 140,
  39. "prettier.tabWidth": 4,
  40. "prettier.useTabs": true,
  41. "prettier.singleQuote": true,
  42.  
  43. // Not organized
  44. "editor.renderWhitespace": "selection",
  45. "editor.cursorStyle": "block",
  46. "editor.renderControlCharacters": true,
  47. "editor.minimap.renderCharacters": false,
  48. "editor.minimap.scale": 1.5,
  49. "editor.minimap.showSlider": "always",
  50. "workbench.editor.closeOnFileDelete": true,
  51. "workbench.editor.highlightModifiedTabs": true,
  52. "workbench.settings.editor": "json",
  53. "explorer.sortOrder": "type",
  54. "files.trimFinalNewlines": true,
  55. "editor.acceptSuggestionOnEnter": "off",
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement