lang/org: tie babel plugins to their respective lang modules

This commit is contained in:
Henrik Lissner 2018-02-06 02:00:31 -05:00
parent 27255d891e
commit 0780c16f92
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -11,13 +11,19 @@
(package! org-download)) (package! org-download))
(when (featurep! +babel) (when (featurep! +babel)
(package! ob-go)
(package! ob-mongo) (package! ob-mongo)
(package! ob-redis) (package! ob-redis)
(package! ob-restclient)
(package! ob-rust)
(package! ob-sql-mode) (package! ob-sql-mode)
(package! ob-translate)) (package! ob-translate)
(when (featurep! :lang go)
(package! ob-go))
(when (featurep! :lang rust)
(package! ob-rust))
(when (featurep! :lang restclient)
(package! ob-restclient))
(when (featurep! :lang crystal)
(package! ob-crystal)))
(when (featurep! +export) (when (featurep! +export)
(package! ox-pandoc) (package! ox-pandoc)