Files
.emacs.d/modules/languages/siren-slim.el
Jim Myhrberg 8ed4a4e6f5 refactor: Visual indentation guides
- Switch from highlight-indentation package to highlight-indent-guides.
- Activate visual indentation in a prog-mode hook, rather than doing
  within each individual major mode. It was already done within all
  major modes based on prog-mode anyway.
- Add new siren-display-indetation module and function as a central way
  to enable visual indetation guides. This makes switching the
  underlying package at some point in the future much easier.
2020-01-26 18:53:44 +00:00

18 lines
319 B
EmacsLisp

;;; siren-slim.el --- jimeh's Emacs Siren: slim-mode configuration.
;;; Commentary:
;; Basic configuration for slim-mode.
;;; Code:
(use-package slim-mode
:mode "\\.slim\\'"
:hook (slim-mode . siren-slim-mode-hook)
:init
(defun siren-slim-mode-setup ()))
(provide 'siren-slim)
;;; siren-slim.el ends here