From 92eba8a8f83cd7687f57e33f308d7738cf71396a Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Fri, 20 Dec 2019 19:41:35 +0900 Subject: [PATCH] Add dtl web-mode --- emacs.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emacs.el b/emacs.el index 9535a6f..a4cca35 100644 --- a/emacs.el +++ b/emacs.el @@ -1114,6 +1114,9 @@ found, otherwise returns nil." (when (fboundp 'web-mode) (add-to-list 'auto-mode-alist '("\\.html\\.j2\\'" . web-mode)) + (add-to-list 'auto-mode-alist + ;; Django Template Language + '("\\.dtl\\'" . web-mode)) ) (when (autoload-eval-lazily 'wgrep)