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
16 lines
413 B
EmacsLisp
16 lines
413 B
EmacsLisp
;;; siren-highlight-indent-guides.el --- jimeh's Emacs Siren: highlight-indent-guides-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for highlight-indent-guides-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package highlight-indent-guides
|
|
:defer t
|
|
:commands highlight-indent-guides-mode
|
|
:diminish highlight-indent-guides-mode)
|
|
|
|
(provide 'siren-highlight-indent-guides)
|
|
;;; siren-highlight-indent-guides.el ends here
|