Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. {
  2. "window.zoomLevel": 3,
  3. "editor.tabSize": 2,
  4. "editor.fontLigatures": true,
  5. "editor.fontFamily": "'Fira Code', Consolas, 'Courier New', monospace",
  6. "editor.minimap.enabled": false,
  7. "workbench.panel.defaultLocation": "right",
  8. "editor.formatOnSave": true,
  9. "javascript.updateImportsOnFileMove.enabled": "always",
  10. "editor.tokenColorCustomizations": {
  11. "textMateRules": [
  12. {
  13. "scope": [
  14. //following will be in italic (=FlottFlott)
  15. "comment",
  16. "entity.name.type.class", //class names
  17. "keyword", //import, export, return…
  18. "constant", //String, Number, Boolean…, this, super
  19. "storage.modifier", //static keyword
  20. "storage.type.class.js" //class keyword
  21. ],
  22. "settings": {
  23. "fontStyle": "italic"
  24. }
  25. },
  26. {
  27. "scope": [
  28. //following will be excluded from italics (VSCode has some defaults for italics)
  29. "invalid",
  30. "keyword.operator",
  31. "constant.numeric.css",
  32. "keyword.other.unit.px.css",
  33. "constant.numeric.decimal.js",
  34. "constant.numeric.json"
  35. ],
  36. "settings": {
  37. "fontStyle": ""
  38. }
  39. }
  40. ]
  41. },
  42. "workbench.colorTheme": "Yo theme",
  43. "workbench.iconTheme": "eq-material-theme-icons-palenight"
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement