Advertisement
Guest User

rust syntax highlighting in vscode

a guest
May 24th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. {
  2. "editor.insertSpaces": false,
  3. "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  4. "java.errors.incompleteClasspath.severity": "ignore",
  5. "editor.wordWrap": "on",
  6. "editor.tokenColorCustomizations": {
  7. "[Default Dark+]": {
  8. "textMateRules": [
  9. {
  10. "scope": ["storage.modifier.lifetime.rust"],
  11. "settings": {
  12. "foreground": "#d16969"
  13. }
  14. },
  15. {
  16. "scope": "storage.type.core.rust",
  17. "settings": {
  18. "foreground": "#4EC9B0"
  19. }
  20. },
  21. {
  22. "scope": ["meta.attribute.rust"],
  23. "settings": {
  24. "foreground": "#9CDCFE"
  25. }
  26. }
  27. ]
  28. }
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement