nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

email.nanorc (340B)


      1 ## Syntax highlighting for emails.
      2 
      3 syntax email "\.eml$"
      4 
      5 # Quoted lines.
      6 color green "^>.*"
      7 color cyan "^> ?>.*"
      8 color yellow "^> ?> ?>.*"
      9 
     10 # Email addresses.
     11 color brightmagenta "<[^@]+@[^@]+>"
     12 
     13 # URLs.
     14 color brightblue "(https?|ftp)://\S+\.\S+[^[:space:].)]"
     15 
     16 # Signatures, even quoted ones.
     17 color yellow start="^>* ?-- $" end="^>* ?$"