mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
21 lines
449 B
EmacsLisp
21 lines
449 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)
|
|
|
|
:init
|
|
(defun siren-haml-mode-setup ()
|
|
(setq tab-width 2)
|
|
(highlight-indentation-set-offset 2)
|
|
(highlight-indentation-current-column-mode +1)))
|
|
|
|
(provide 'siren-haml)
|
|
;;; siren-haml.el ends here
|