blob: b2ad2efdcab0bf7bfad3ef731c1d7155f8046c6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;;;;;;;;;;;;;;;;;;;;;;;;
;; HTML Mode
;;;;;;;;;;;;;;;;;;;;;;;;;
(add-hook 'html-mode-hook
(lambda ()
;; Default indentation is usually 2 spaces, changing to 4.
(set (make-local-variable 'sgml-basic-offset) 4)))
;; highlight-indent-guides-mode
(add-hook 'html-mode-hook 'highlight-indent-guides-mode)
(provide 'init-html)
|