Prevent packages from pulling in org

org-plus-contrib already satisfies that dependency.
This commit is contained in:
Henrik Lissner 2019-12-31 19:11:16 -05:00
parent 69a7c60c3a
commit 33701ea407
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -21,7 +21,11 @@
"(fset 'org-git-version #'ignore)\n"
"(provide 'org-version)\n")))))
(package! org-plus-contrib) ; install cutting-edge version of org-mode
;; install cutting-edge version of org-mode
(package! org-plus-contrib)
;; ...And prevent other packages from pulling org; org-plus-contrib satisfies
;; the dependency already: https://github.com/raxod502/straight.el/issues/352
(package! org :recipe (:local-repo nil))
(package! avy)
(package! htmlize)