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
415 B
EmacsLisp
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
|