diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-07-27 14:09:39 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-07-27 14:09:39 +0100 |
commit | 6567bdbde92af863d2bd6717a7ac618b47b33eb5 (patch) | |
tree | 342d27ae4adfb48b29800a15a3bc885318ed6ced | |
parent | 1f8a397b7505176863032b6c456885594f622cbc (diff) | |
download | dotfiles-6567bdbde92af863d2bd6717a7ac618b47b33eb5.tar.gz |
Add mustache-mode
-rw-r--r-- | .emacs.d/lisp/init-web.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-web.el b/.emacs.d/lisp/init-web.el index 1ee56a7..4e1d542 100644 --- a/.emacs.d/lisp/init-web.el +++ b/.emacs.d/lisp/init-web.el @@ -50,6 +50,10 @@ (js2-imenu-extras-mode +1) (subword-mode +1)))) +(use-package mustache-mode + :config + (add-to-list 'auto-mode-alist '("\\.mustache\\'" . mustache-mode))) + (use-package scss-mode :custom (scss-compile-at-save nil)) |