mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
19 lines
366 B
EmacsLisp
19 lines
366 B
EmacsLisp
;;; siren-haml.el --- jimeh's Emacs Siren: haml-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for haml-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package haml-mode
|
|
:mode "\\.haml\\'" "\\.hamlc\\'"
|
|
:hook (haml-mode . siren-haml-mode-setup)
|
|
|
|
:preface
|
|
(defun siren-haml-mode-setup ()
|
|
(setq-local tab-width 2)))
|
|
|
|
(provide 'siren-haml)
|
|
;;; siren-haml.el ends here
|