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
|
2019-10-25 20:29:00 -04:00
|
|
|
|
|
|
|
(package! htmlize)
|
2019-07-21 15:39:45 +02:00
|
|
|
(package! org-bullets :recipe (:host github :repo "Kaligule/org-bullets"))
|
2019-10-25 20:00:06 -04:00
|
|
|
(package! org-fancy-priorities)
|
2019-10-25 20:29:00 -04:00
|
|
|
(package! org-yt :recipe (:host github :repo "TobiasZawada/org-yt"))
|
|
|
|
(package! ox-clip)
|
2017-12-08 22:59:42 -05:00
|
|
|
(package! toc-org)
|
2019-10-23 17:40:57 -04:00
|
|
|
(when (featurep! :editor evil +everywhere)
|
2019-10-23 17:36:30 -04:00
|
|
|
(package! evil-org :recipe (:host github :repo "hlissner/evil-org-mode")))
|
2018-10-10 22:00:30 +02:00
|
|
|
(when (featurep! :tools pdf)
|
|
|
|
(package! org-pdfview))
|
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-10-25 20:29:00 -04: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 14:56:31 +02:00
|
|
|
(when (featurep! +hugo)
|
2019-10-25 20:29:00 -04:00
|
|
|
(package! ox-hugo
|
|
|
|
:recipe (:host github :repo "kaushalmodi/ox-hugo" :nonrecursive t)))
|
2019-11-08 12:54:10 +09:00
|
|
|
(when (featurep! :lang rst)
|
|
|
|
(package! ox-rst))
|