Files
.emacs.d/modules/editor/siren-highlight-indentation.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

19 lines
469 B
EmacsLisp

;;; siren-highlight-indentation.el --- jimeh's Emacs Siren: highlight-indentation-mode configuration.
;;; Commentary:
;; Basic configuration for highlight-indentation-mode.
;;; Code:
(use-package highlight-indentation
:defer t
:diminish (highlight-indentation-mode
highlight-indentation-current-column-mode)
:hook
(prog-mode . highlight-indent-guides-mode))
(provide 'siren-highlight-indentation)
;;; siren-highlight-indentation.el ends here