2017-12-08 22:59:42 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/org/packages.el
|
|
|
|
|
2018-01-04 16:04:48 -05:00
|
|
|
;; Installs a cutting-edge version of org-mode
|
|
|
|
(package! org-plus-contrib)
|
2018-07-30 03:48:27 +02:00
|
|
|
(package! org :ignore t) ; ignore org from ELPA
|
2017-12-08 22:59:42 -05:00
|
|
|
|
2018-02-22 04:23:06 -05:00
|
|
|
(package! org-bullets :recipe (:fetcher github :repo "Kaligule/org-bullets"))
|
2017-12-08 22:59:42 -05:00
|
|
|
(package! toc-org)
|
|
|
|
|
2018-02-18 00:26:27 -05:00
|
|
|
(when (featurep! :feature evil)
|
|
|
|
(package! evil-org))
|
|
|
|
|
2017-12-08 22:59:42 -05:00
|
|
|
(when (featurep! +attach)
|
|
|
|
(package! org-download))
|
|
|
|
|
|
|
|
(when (featurep! +babel)
|
|
|
|
(package! ob-mongo)
|
|
|
|
(package! ob-sql-mode)
|
2018-02-06 02:00:31 -05:00
|
|
|
(package! ob-translate)
|
|
|
|
|
2018-07-29 17:56:29 +02:00
|
|
|
(when (featurep! +ipython)
|
|
|
|
(package! ob-ipython))
|
|
|
|
|
2018-02-11 02:57:46 -05:00
|
|
|
(when (featurep! :lang crystal)
|
|
|
|
(package! ob-crystal))
|
2018-02-06 02:00:31 -05:00
|
|
|
(when (featurep! :lang go)
|
|
|
|
(package! ob-go))
|
2018-07-30 03:53:52 +02:00
|
|
|
(when (featurep! :lang nim)
|
|
|
|
(package! ob-nim))
|
|
|
|
(when (featurep! :lang racket)
|
|
|
|
(package! ob-racket :recipe (:fetcher github :repo "DEADB17/ob-racket")))
|
2018-06-20 17:04:22 -07:00
|
|
|
(when (featurep! :lang rest)
|
2018-02-06 02:00:31 -05:00
|
|
|
(package! ob-restclient))
|
2018-07-30 03:53:52 +02:00
|
|
|
(when (featurep! :lang rust)
|
|
|
|
(package! ob-rust)))
|
2017-12-08 22:59:42 -05:00
|
|
|
|
|
|
|
(when (featurep! +export)
|
2018-01-31 14:32:52 -05:00
|
|
|
(package! ox-pandoc)
|
|
|
|
(package! htmlize))
|
2017-12-08 22:59:42 -05:00
|
|
|
|
|
|
|
(when (featurep! +present)
|
2018-01-28 15:10:45 -05:00
|
|
|
(package! centered-window :recipe (:fetcher github :repo "anler/centered-window-mode"))
|
2017-12-08 22:59:42 -05:00
|
|
|
(package! org-tree-slide)
|
|
|
|
(package! ox-reveal))
|
|
|
|
|
|
|
|
;; (when (featurep! +publish))
|