From 092304d9e0ccc37cc0ddaa9b136457e56a1cac20 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 12 Oct 2025 11:47:26 -0500 Subject: changing repositories --- modules/prog-yaml.el | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 modules/prog-yaml.el (limited to 'modules/prog-yaml.el') diff --git a/modules/prog-yaml.el b/modules/prog-yaml.el new file mode 100644 index 00000000..1a970313 --- /dev/null +++ b/modules/prog-yaml.el @@ -0,0 +1,18 @@ +;;; prog-yaml --- YAML Settings -*- lexical-binding: t; coding: utf-8; -*- +;; author: Craig Jennings + +;;; Commentary: + +;;; Code: + +(use-package yaml-mode + :defer .5 + :commands (yaml-mode) + :config + (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)) + (add-to-list 'auto-mode-alist '("\\.yaml\\'" . yaml-mode))) + +(add-hook 'yaml-mode-hook ' flycheck-mode-hook) + +(provide 'prog-yaml) +;;; prog-yaml.el ends here -- cgit v1.2.3