gists/gists/prism-xml-yaml.el

11 lines
401 B
EmacsLisp
Raw Permalink Normal View History

;; Enable prism-whitespace-mode for YAML and XML automatically. Detect
2023-06-03 15:20:29 +00:00
;; the amount of whitespace from the respective mode.
(use-package prism
:config
(add-to-list 'prism-whitespace-mode-indents '(yaml-mode . yaml-indent-offset))
(add-to-list 'prism-whitespace-mode-indents '(nxml-mode . nxml-child-indent))
:hook
(yaml-mode . prism-whitespace-mode)
(nxml-mode . prism-whitespace-mode))