Initial commit
This commit is contained in:
commit
99e3df82b7
28 changed files with 2639 additions and 0 deletions
13
configs/mail.el
Normal file
13
configs/mail.el
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
(add-to-list 'auto-mode-alist '("/mutt" . mail-mode))
|
||||
|
||||
(add-hook 'mail-mode-hook 'turn-on-auto-fill)
|
||||
(add-hook 'mail-mode-hook 'mail-abbrevs-setup)
|
||||
|
||||
;; colorizing multiply-quoted lines
|
||||
(add-hook 'mail-mode-hook
|
||||
(lambda ()
|
||||
(font-lock-add-keywords nil
|
||||
'(("^[ \t]*>[ \t]*>[ \t]*>.*$"
|
||||
(0 'mail-multiply-quoted-text-face))
|
||||
("^[ \t]*>[ \t]*>.*$"
|
||||
(0 'mail-double-quoted-text-face))))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue