forgot one

This commit is contained in:
Mike 'Fuzzy' Partin 2024-07-06 11:09:55 -07:00
parent b477973c99
commit c95f43ba84
2 changed files with 10 additions and 3 deletions

View File

@ -142,6 +142,12 @@
:type 'boolean :type 'boolean
:group 'thwap-config-group) :group 'thwap-config-group)
;; Yaml toggle
(defcustom thwap-dev-enable-yaml nil
"Whether or not to setup Yaml modes."
:type 'boolean
:group 'thwap-config-group)
;; ;;
;; Org mode settings ;; Org mode settings
;; ;;

View File

@ -1,5 +1,6 @@
(when thwap-dev-enable-yaml
(use-package yaml-mode (use-package yaml-mode
:ensure t :ensure t
:straight t) :straight t))
(provide 'thwap-yaml) (provide 'thwap-yaml)