Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. {
  2. "workbench.startupEditor":"newUntitledFile",
  3. "editor.fontSize":13,
  4. "editor.tabSize":2,
  5. "editor.renderWhitespace":"boundary",
  6. "editor.fontFamily":"'Fira Code iScript', Menlo, Monaco, 'Courier New', monospace",
  7. "editor.lineHeight":22,
  8. "workbench.iconTheme":"vscode-icons",
  9. "explorer.confirmDelete":false,
  10. "git.confirmSync":false,
  11. "git.autofetch":true,
  12. "javascript.updateImportsOnFileMove.enabled":"always",
  13. "window.zoomLevel":0,
  14. "editor.fontLigatures":true,
  15. "explorer.confirmDragAndDrop":false,
  16. "workbench.colorTheme":"Default Light+",
  17. "editor.tokenColorCustomizations":{
  18. "textMateRules":[
  19. {
  20. "scope":[
  21. "comment",
  22. "entity.name.type.class",
  23. "keyword",
  24. "cofnstant",
  25. "storage.modifier",
  26. "storage.type.class.js"
  27. ],
  28. "settings":{
  29. "fontStyle":"italic"
  30. }
  31. },
  32. {
  33. "scope":[
  34. "invalid",
  35. "keyword.operator",
  36. "constant.numeric.css",
  37. "keyword.other.unit.px.css",
  38. "constant.numeric.decimal.js",
  39. "constant.numeric.json"
  40. ],
  41. "settings":{
  42. "fontStyle":""
  43. }
  44. }
  45. ]
  46. }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement