Avoid undefined error when showing help without Org being loaded

`helpful.el` relies on Org links, so we ensure `ol.el` is loaded.
This commit is contained in:
Daniel Borchmann 2025-03-29 17:35:04 +01:00
parent 6279921553
commit 9113276fc8
No known key found for this signature in database
GPG Key ID: 784AA8DF0CCDF625

View File

@ -473,7 +473,8 @@
(use-package helpful
:pin "melpa-stable"
:ensure t)
:ensure t
:config (require 'ol)) ; To avoid errors about `org-link-types' not being defined.
(use-package hydra
:pin "melpa-stable"