2017-12-08 22:59:42 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/org/packages.el
|
|
|
|
|
2019-08-08 10:10:11 -04:00
|
|
|
;; Prevent built-in Org from playing into the byte-compilation of
|
|
|
|
;; `org-plus-contrib'.
|
|
|
|
(when-let (orglib (locate-library "org" nil doom--initial-load-path))
|
|
|
|
(setq load-path (delete (substring (file-name-directory orglib) 0 -1)
|
|
|
|
load-path)))
|
|
|
|
|
2019-07-21 15:39:45 +02:00
|
|
|
(package! org-plus-contrib) ; install cutting-edge version of org-mode
|
|
|
|
(package! org-bullets :recipe (:host github :repo "Kaligule/org-bullets"))
|
2017-12-08 22:59:42 -05:00
|
|
|
(package! toc-org)
|
2019-04-21 19:59:44 -04:00
|
|
|
(when (featurep! :editor evil)
|
2018-02-18 00:26:27 -05:00
|
|
|
(package! evil-org))
|
2018-10-10 22:00:30 +02:00
|
|
|
(when (featurep! :tools pdf)
|
|
|
|
(package! org-pdfview))
|
2019-06-28 16:53:26 +02:00
|
|
|
(package! htmlize)
|
|
|
|
(package! ox-clip)
|
2019-07-21 15:39:45 +02:00
|
|
|
(package! org-yt :recipe (:host github :repo "TobiasZawada/org-yt"))
|
2019-07-28 16:29:53 +03:00
|
|
|
(when (featurep! :tools magit)
|
|
|
|
(package! orgit))
|
2018-10-10 22:00:30 +02:00
|
|
|
|
2019-06-28 16:53:26 +02:00
|
|
|
;;; Babel
|
|
|
|
(package! ob-async)
|
|
|
|
(when (featurep! :lang crystal)
|
|
|
|
(package! ob-crystal))
|
|
|
|
(when (featurep! :lang go)
|
|
|
|
(package! ob-go))
|
|
|
|
(when (featurep! :lang nim)
|
|
|
|
(package! ob-nim))
|
|
|
|
(when (featurep! :lang racket)
|
2019-07-21 15:39:45 +02:00
|
|
|
(package! ob-racket :recipe (:host github :repo "DEADB17/ob-racket")))
|
2019-06-28 16:53:26 +02:00
|
|
|
(when (featurep! :lang rest)
|
|
|
|
(package! ob-restclient))
|
|
|
|
(when (featurep! :lang rust)
|
|
|
|
(package! ob-rust))
|
|
|
|
|
|
|
|
;;; Modules
|
|
|
|
(when (featurep! +dragndrop)
|
2018-10-19 12:53:25 -04:00
|
|
|
(package! org-download))
|
2019-06-28 16:53:26 +02:00
|
|
|
(when (featurep! +gnuplot)
|
|
|
|
(package! gnuplot)
|
|
|
|
(package! gnuplot-mode))
|
|
|
|
(when (featurep! +ipython)
|
|
|
|
(package! ob-ipython))
|
|
|
|
(when (featurep! +pandoc)
|
|
|
|
(package! ox-pandoc))
|
2019-10-11 14:07:06 +10:00
|
|
|
(when (featurep! +pomodoro)
|
|
|
|
(package! org-pomodoro))
|
2017-12-08 22:59:42 -05:00
|
|
|
(when (featurep! +present)
|
2019-07-21 15:39:45 +02:00
|
|
|
(package! centered-window :recipe (:host github :repo "anler/centered-window-mode"))
|
2017-12-08 22:59:42 -05:00
|
|
|
(package! org-tree-slide)
|
2019-10-20 18:36:22 -04:00
|
|
|
(package! org-re-reveal))
|
2019-09-15 13:17:35 +09:00
|
|
|
|
|
|
|
(when (featurep! +journal)
|
|
|
|
(package! org-journal))
|
2019-08-29 12:02:12 +02:00
|
|
|
|
2019-08-29 14:56:31 +02:00
|
|
|
(when (featurep! +hugo)
|
|
|
|
(package! ox-hugo :recipe (:host github
|
|
|
|
:repo "kaushalmodi/ox-hugo"
|
2019-08-29 16:26:06 +02:00
|
|
|
:nonrecursive t)))
|