init-html.el 557 B

12345678910111213141516171819202122232425
  1. ;;; init-html.el --- .Emacs Configuration -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;
  4. ;;; Code:
  5. ;;;;;;;;;;;;;;;;;;;;;;;;;
  6. ;; HTML Mode
  7. ;;;;;;;;;;;;;;;;;;;;;;;;;
  8. (add-hook 'html-mode-hook
  9. (lambda ()
  10. ;; Default indentation is usually 2 spaces, changing to 4.
  11. (set (make-local-variable 'sgml-basic-offset) 4)))
  12. ;; highlight-indent-guides-mode
  13. (add-hook 'html-mode-hook 'highlight-indent-guides-mode)
  14. (provide 'init-html)
  15. ;; Local Variables:
  16. ;; byte-compile-warnings: (not free-vars)
  17. ;; End:
  18. ;;; init-html.el ends here