dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 494ed9ac933eb0af4beb013d5b67437a50c82e4c
parent 851711dc08d994a2658e6f1a5033a133d67d6e04
Author: Alex Balgavy <alexander.balgavy@spaceapplications.com>
Date:   Tue, 23 Apr 2024 15:33:49 +0200

emacs: add indent guides

Diffstat:
Memacs/config.org | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -1519,6 +1519,15 @@ Gives ideas for phrases to use in academic writing. (ediff-split-window-function 'split-window-horizontally "I want long vertical side-by-side windows") (ediff-window-setup-function 'ediff-setup-windows-plain "Everything in one frame please"))) #+end_src +** highlight-indent-guides +#+begin_src emacs-lisp + (use-package highlight-indent-guides + :hook (yaml-mode . highlight-indent-guides-mode) + :custom + ((highlight-indent-guides-method 'character)) + :custom-face + (highlight-indent-guides-character-face ((t (:foreground "#adadad"))))) +#+end_src * Mode/language specific packages ** Org *** Custom functions