Files
.emacs.d/modules/editor/siren-highlight-indentation.el
Jim Myhrberg f0e8bd2388 chore(editor): Use siren-display-indentation exclusively
Instead of directly using the my current favorite indentation
highlighting package in various places, only use the
siren-display-indentation function. This lets me control it from a
single central place.
2020-03-30 21:57:32 +01:00

16 lines
415 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))
(provide 'siren-highlight-indentation)
;;; siren-highlight-indentation.el ends here