debian.nanorc 778 B

1234567891011121314151617181920
  1. ## Here is an example for apt's sources.list.
  2. syntax "sources.list" "sources\.list(~|\.old|\.save)?$" "sources\.list\.d/.*\.list(~|\.old|\.save)?$"
  3. # Coloring the deb lines, working from tail to head. First the
  4. # components -- well, everything, and thus also the components.
  5. color brightmagenta "^deb.*"
  6. # Distribution -- well, everything, except the components.
  7. color brightred "^deb(-src)?\s+.*((ftp|https?|rsh|ssh|copy|file|spacewalk|tor):/\S+|cdrom:\[.+\]/)\s+\S+"
  8. # URIs.
  9. color brightgreen "^deb(-src)?\s+.*(ftp|https?|rsh|ssh|copy|file|spacewalk|tor):/\S+"
  10. # CDroms.
  11. color brightgreen "^deb(-src)?\s+.*cdrom:\[.+\]/"
  12. # Options.
  13. color brightcyan "^deb(-src)?\s+\[.+\]\s+"
  14. # And finally the initial deb tag.
  15. color yellow "^deb(-src)?"
  16. # Comments.
  17. color brightblue "#.*"