summaryrefslogtreecommitdiffstats
path: root/lisp/init-web-mode.el
blob: d29790bf7910b702822d610e936e634a0372c4cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
;; install package
(require-package 'web-mode)

(require 'web-mode)

;; assume jinja2 template syntax in .html files
(setq web-mode-engines-alist '(("jinja2" . "\\.html\\'")))

;; use web-mode for .htm, .html and .css
(add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.css\\'" . web-mode))

(provide 'init-web-mode)