using require

This commit is contained in:
2023-05-16 11:18:38 +02:00
parent 8fdad944f9
commit 98ccb528ea
65 changed files with 5977 additions and 0 deletions

26
lisp/init-mmm.el Normal file
View File

@@ -0,0 +1,26 @@
;; *** MMM Mode
(use-package mmm-mode
:config
(require 'cl-lib)
(require 'mmm-auto)
(require 'mmm-vars)
(setq mmm-submode-decoration-level 2)
;; [[https://github.com/purcell/mmm-mode][mmm-mode github]]
;; see doc for class definition in var 'mmm-classes-alist
;; **** MMM config for POD mode
(mmm-add-classes
'((html-pod
:submode html-mode ;; web-mode doesnt work this way!
:delimiter-mode nil
:front "=begin html"
:back "=end html")))
(mmm-add-mode-ext-class 'pod-mode nil 'html-pod)
:hook (pod-mode mmm-mode-on))
(provide 'init-mmm)
;;; init-mmm.el ends here