diff options
author | Thomas Voss <thomas.voss@humanwave.nl> | 2025-06-11 14:58:17 +0200 |
---|---|---|
committer | Thomas Voss <thomas.voss@humanwave.nl> | 2025-06-11 14:58:17 +0200 |
commit | 42d98439b25e99365dd2ddc3864e8b9c5bbb8f06 (patch) | |
tree | 039de2927c4fc8df7826e1cdc28cfe06effff8a0 /.config/emacs | |
parent | 33babe981045a3ff67297245505ac464df4f717f (diff) |
emacs: Add indent guides
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/modules/mm-theme.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-theme.el b/.config/emacs/modules/mm-theme.el index f4b9c9a..53dc97b 100644 --- a/.config/emacs/modules/mm-theme.el +++ b/.config/emacs/modules/mm-theme.el @@ -214,4 +214,16 @@ See also the `mm-theme-background-opacity' variable." :custom (hl-line-sticky-flag nil)) + +;;; Indent Guides + +(when mm-darwin-p + (use-package highlight-indent-guides + :ensure t + :hook ((jinja2-mode vue-ts-mode mhtml-mode) . highlight-indent-guides-mode) + :custom + (highlight-indent-guides-method 'fill) + (highlight-indent-guides-auto-even-face-perc 30) + (highlight-indent-guides-auto-odd-face-perc 0))) + (provide 'mm-theme)
\ No newline at end of file |