From 422c1f401a414ce5ecbd441a296d384f9e1a8ae2 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Mon, 13 Sep 2021 20:09:02 -0400 Subject: [PATCH] Automatically set to markdown when loading tridactyl redmine files. --- emacs/config.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs/config.el b/emacs/config.el index de947fd..2a311c6 100644 --- a/emacs/config.el +++ b/emacs/config.el @@ -19,6 +19,11 @@ ;; Use an image splash (setq fancy-splash-image (concat doom-private-dir "doom.png")) +(setq ispell-dictionary "en") + + +(add-to-list 'auto-mode-alist '("/\\(tmp\\|private/var\\)/.*/tmp_redmine.greenfiling.com.*\\.txt" . markdown-mode)) + (load! "+mail") (load! "+org") (load! "+company")