From 4ca19a8f1d17051db6cd613098c0c24a2d39aa2f Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sat, 23 Sep 2023 18:13:44 +0200 Subject: [PATCH] pinwheel: Add `yaml-mode` to `emacs` --- hosts/pinwheel/modules/emacs/config.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/pinwheel/modules/emacs/config.org b/hosts/pinwheel/modules/emacs/config.org index 201cf52..40865fa 100644 --- a/hosts/pinwheel/modules/emacs/config.org +++ b/hosts/pinwheel/modules/emacs/config.org @@ -472,3 +472,12 @@ Setup prefix for keybindings. ) ) #+END_SRC +** YAML +#+BEGIN_SRC emacs-lisp + (use-package yaml-mode + :mode ( + ("\\.yml$" . yaml-mode) + ("\\.yaml$" . yaml-mode) + ) + ) +#+END_SRC