home/src/rc/mail.kak

13 lines
478 B
Plaintext
Raw Normal View History

hook global BufSetOption mimetype=message/rfc822 %{ set buffer filetype mail }
hook global WinSetOption filetype=mail %~
addhl group mail-highlight
addhl -group mail-highlight regex ^(From|To|Cc|Bcc|Subject|Reply-To|In-Reply-To):([^\n]*(?:\n\h+[^\n]+)*)$ 1:keyword 2:attribute
addhl -group mail-highlight regex <[^@>]+@.*?> 0:string
addhl -group mail-highlight regex ^>.*?$ 0:comment
~
hook global WinSetOption filetype=(?!mail).* %{
rmhl mail-highlight
}