blob: 4969f0a41dcc6f079f92f4d5066ff8b75286029f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(setq mml-secure-openpgp-sign-with-sender t)
(add-to-list 'auto-mode-alist '("/mutt" . mail-mode))
(add-hook 'mail-mode-hook
(lambda ()
(font-lock-add-keywords nil
'(("^[ \t]*>[ \t]*>[ \t]*>.*$"
(0 'compilation-error))
("^[ \t]*>[ \t]*>.*$"
(0 'compilation-column-number))
("^[ \t]*>.*$"
(0 'comint-highlight-prompt))))))
|