doomemacs/modules/lang/org/packages.el

61 lines
1.6 KiB
EmacsLisp
Raw Normal View History

2017-12-08 22:59:42 -05:00
;; -*- no-byte-compile: t; -*-
;;; lang/org/packages.el
;; Installs a cutting-edge version of org-mode
(package! org-plus-contrib)
;; Prevent built-in Org from playing into the byte-compilation of
;; `org-plus-contrib'.
(when-let* ((orglib (locate-library "org" nil doom-site-load-path)))
(setq load-path (delete (substring (file-name-directory orglib) 0 -1)
load-path)))
;; Ignore org on ELPA, if possible
(package! org :ignore t)
2017-12-08 22:59:42 -05:00
(package! org-bullets :recipe (:fetcher github :repo "Kaligule/org-bullets"))
(package! org-yt :recipe (:fetcher github :repo "TobiasZawada/org-yt"))
2017-12-08 22:59:42 -05:00
(package! toc-org)
(when (featurep! :editor evil)
(package! evil-org))
(when (featurep! :tools pdf)
(package! org-pdfview))
2017-12-08 22:59:42 -05:00
(when (featurep! +attach)
(package! org-download))
2017-12-08 22:59:42 -05:00
(when (featurep! +babel)
2018-12-10 20:31:31 -05:00
(package! ob-async)
2017-12-08 22:59:42 -05:00
(package! ob-mongo)
(package! ob-sql-mode)
(package! ob-translate)
(when (featurep! +ipython)
(package! ob-ipython))
2018-02-11 02:57:46 -05:00
(when (featurep! :lang crystal)
(package! ob-crystal))
(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")))
(when (featurep! :lang rest)
(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)
(package! ox-clip)
(package! ox-pandoc)
(package! htmlize))
2017-12-08 22:59:42 -05:00
(when (featurep! +present)
(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))