;;; 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) :init (defun siren-haml-mode-setup () (setq tab-width 2))) (provide 'siren-haml) ;;; siren-haml.el ends here