Skip to content
Snippets Groups Projects
Commit a6eb1e05 authored by Philippe Dosch's avatar Philippe Dosch
Browse files

La composition de mails revient en mail-mode

parent 448d5608
No related branches found
No related tags found
No related merge requests found
......@@ -128,7 +128,7 @@
(append
'(
("\\.tmp$" . text-mode)
("\\.eml$" . text-mode)
("\\.eml$" . mail-mode)
)
auto-mode-alist
))
......@@ -626,6 +626,16 @@
(ispell-change-dictionary "francais")
(flyspell-mode 1)))
;; Chargement automatique des "bons" modes
;; (appelé par les modes LaTeX et Text
(add-hook 'mail-mode-hook
'(lambda ()
(auto-fill-mode 1)
(gin-mode 1)
(ispell-change-dictionary "francais")
(flycheck-mode 1)
(flyspell-mode 1)))
;; Indentation pour le web-mode
(defun my-web-mode-hook ()
"Hooks for Web mode."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment