settings.json 1.3 KB

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