aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-mmm-mode.el
blob: 75c18e33b45b1e1c6dceceacf0fc24c2a4c360ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(use-package mmm-mode

  :config

  (setq mmm-global-mode 'maybe)
  (mmm-add-mode-ext-class nil "\\.php?\\'" 'html-php)
  (mmm-add-mode-ext-class nil "\\.ctp?\\'" 'html-php)
  (set-face-background 'mmm-default-submode-face nil)
  (mmm-add-classes
   '((html-php
      :submode php-mode
      :front "<\\?\\(php\\)?"
      :back "\\?>")))
  )

(provide 'init-mmm-mode)