Files
.emacs.d/modules/siren-highlight-indentation.el

19 lines
465 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))
(use-package highlight-indent-guides
:defer t)
(provide 'siren-highlight-indentation)
;;; siren-highlight-indentation.el ends here