settings.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "javascript.preferences.importModuleSpecifier": "relative",
  3. "search.exclude": {
  4. "**/BetterYTM.user.js": true,
  5. },
  6. "files.associations": {
  7. "*.env": "dotenv",
  8. "*.env.template": "dotenv",
  9. },
  10. // requires extension: fabiospampinato.vscode-highlight
  11. "highlight.regexes": {
  12. "(TODO(\\((\\s|\\d|\\w|[,.-_+*&])+\\))?:?)": { // TODO: or TODO or TODO(xy): but not todo or todo:
  13. "backgroundColor": "#ed0",
  14. "color": "black",
  15. "overviewRulerColor": "#ed0"
  16. },
  17. "(#MARKER)": { // #MARKER test
  18. "backgroundColor": "#c31",
  19. "color": "#fff",
  20. "isWholeLine": true,
  21. "overviewRulerColor": "#c31"
  22. },
  23. "(#SECTION ([^\\S\\r\\n]*[\\w,.\\-_&]+)*[:]*)": { // #SECTION test, 123 & foo
  24. "backgroundColor": "#44f",
  25. "color": "white",
  26. "overviewRulerColor": "#44f"
  27. },
  28. "(#?(DEBUG|DBG)#?)": { // #DEBUG or DEBUG or #DBG or #DBG#
  29. "backgroundColor": "#ff0",
  30. "color": "blue",
  31. "overviewRulerColor": "#ff0"
  32. },
  33. "(IMPORTANT:)": { // IMPORTANT:
  34. "backgroundColor": "#a22",
  35. "color": "#fff"
  36. },
  37. "(FIXME:)": { // FIXME:
  38. "backgroundColor": "#a22",
  39. "color": "#fff",
  40. "overviewRulerColor": "#752020"
  41. }
  42. },
  43. }