From 803556611476030f1b0ff79163e5a51fb699b42c Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Tue, 2 Aug 2022 12:02:16 -0400 Subject: [PATCH] ENH make yaml readable --- etc/conf.org | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/etc/conf.org b/etc/conf.org index cd65393..f4273f9 100644 --- a/etc/conf.org +++ b/etc/conf.org @@ -1640,9 +1640,18 @@ R-markdown is enabled via polymode, which allows multiple modes in one buffer (t :ID: 995cd47c-e0af-43a8-bd7c-a46ae1fae258 :END: #+BEGIN_SRC emacs-lisp +(use-package highlight-indentation + :straight t + :config + (set-face-attribute 'highlight-indentation-face nil :background "gray20") + (set-face-attribute 'highlight-indentation-current-column-face + nil :background "dark slate blue")) + (use-package yaml-mode :straight t - :hook ((yaml-mode . fci-mode))) + :hook ((yaml-mode . fci-mode) + (yaml-mode . highlight-indentation-mode) + (yaml-mode . highlight-indentation-current-column-mode))) #+END_SRC *** csv files :PROPERTIES: