ENH make yaml readable

This commit is contained in:
Nathan Dwarshuis 2022-08-02 12:02:16 -04:00
parent 2e9166fec8
commit 8035566114
1 changed files with 10 additions and 1 deletions

View File

@ -1640,9 +1640,18 @@ R-markdown is enabled via polymode, which allows multiple modes in one buffer (t
:ID: 995cd47c-e0af-43a8-bd7c-a46ae1fae258 :ID: 995cd47c-e0af-43a8-bd7c-a46ae1fae258
:END: :END:
#+BEGIN_SRC emacs-lisp #+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 (use-package yaml-mode
:straight t :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 #+END_SRC
*** csv files *** csv files
:PROPERTIES: :PROPERTIES: