2017-12-08 22:59:42 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/org/packages.el
|
|
|
|
|
2020-01-22 18:36:37 -05:00
|
|
|
;; Install cutting-edge version of org-mode, and from a mirror, because
|
|
|
|
;; code.orgmode.org runs on a potato.
|
2020-01-23 04:15:26 -05:00
|
|
|
(package! org-mode
|
|
|
|
:recipe (:host github
|
|
|
|
:repo "emacs-straight/org-mode"
|
2020-11-09 21:37:23 -05:00
|
|
|
:files ("*.el" "lisp/*.el" "contrib/lisp/*.el")
|
|
|
|
;; HACK A necessary hack because org requires a compilation step
|
|
|
|
;; after being cloned, and during that compilation a
|
|
|
|
;; org-version.el is generated with these two functions, which
|
|
|
|
;; return the output of a 'git describe ...' call in the repo's
|
|
|
|
;; root. Of course, this command won't work in a sparse clone,
|
|
|
|
;; and more than that, initiating these compilation step is a
|
|
|
|
;; hassle, so...
|
2021-01-08 23:56:27 -05:00
|
|
|
:pre-build
|
2021-01-09 03:12:56 -05:00
|
|
|
(with-temp-file (doom-path (straight--repos-dir "org-mode") "org-version.el")
|
2021-01-08 23:56:27 -05:00
|
|
|
(insert "(fset 'org-release (lambda () \"9.5\"))\n"
|
|
|
|
"(fset 'org-git-version #'ignore)\n"
|
|
|
|
"(provide 'org-version)\n")))
|
2021-01-09 03:12:56 -05:00
|
|
|
:pin "6b83c6e4eaec4af47a90d05c3410d4637d8cb8da"
|
2020-08-23 22:25:25 -04:00
|
|
|
;; Prevents built-in Org from sneaking into the byte-compilation of
|
|
|
|
;; `org-plus-contrib', and inform other packages that `org-mode' satisfies the
|
|
|
|
;; `org' dependency: https://github.com/raxod502/straight.el/issues/352
|
|
|
|
:shadow 'org)
|
2019-10-25 20:29:00 -04:00
|
|
|
|
2020-01-25 03:49:42 -05:00
|
|
|
(package! avy)
|
2020-08-19 15:25:47 -04:00
|
|
|
(package! htmlize :pin "49205105898ba8993b5253beec55d8bddd820a70")
|
2020-01-14 22:32:11 -05:00
|
|
|
(package! org-yt
|
|
|
|
:recipe (:host github :repo "TobiasZawada/org-yt")
|
2020-04-30 02:02:21 -04:00
|
|
|
:pin "40cc1ac76d741055cbefa13860d9f070a7ade001")
|
2020-07-12 22:19:58 -04:00
|
|
|
(package! ox-clip :pin "f5eac28734ea33d0b7a3dbe10b777907a91cf9f9")
|
2020-11-10 13:22:46 -05:00
|
|
|
(package! toc-org :pin "aef220c266f53d36055f74f4a243c6483c563d2a")
|
2020-12-05 16:37:59 -05:00
|
|
|
(package! org-cliplink :pin "13e0940b65d22bec34e2de4bc8cba1412a7abfbc")
|
2019-11-10 20:50:01 -05:00
|
|
|
|
2019-10-23 17:40:57 -04:00
|
|
|
(when (featurep! :editor evil +everywhere)
|
2020-01-14 22:32:11 -05:00
|
|
|
(package! evil-org
|
|
|
|
:recipe (:host github :repo "hlissner/evil-org-mode")
|
2020-12-05 16:37:59 -05:00
|
|
|
:pin "a9706da260c45b98601bcd72b1d2c0a24a017700"))
|
2018-10-10 22:00:30 +02:00
|
|
|
(when (featurep! :tools pdf)
|
2021-01-09 03:12:56 -05:00
|
|
|
(package! org-pdftools :pin "bcf0084883ede36e91c72be73c0fbd7098439c99"))
|
2019-07-28 16:29:53 +03:00
|
|
|
(when (featurep! :tools magit)
|
2020-07-19 00:36:37 -04:00
|
|
|
(package! orgit :pin "ac9b1a42863a864fde9d225890ef5464bffdc646"))
|
2019-12-20 02:44:20 -05:00
|
|
|
(when (featurep! +brain)
|
2021-01-09 03:12:56 -05:00
|
|
|
(package! org-brain :pin "f7939ef5071895930eebccf490ea7cb25cc54b2c"))
|
2019-11-10 20:50:01 -05:00
|
|
|
(when (featurep! +dragndrop)
|
2021-01-09 03:12:56 -05:00
|
|
|
(package! org-download :pin "97bec7412e1a4d6e9031c7a0568d0f065cd9fd00"))
|
2019-11-10 20:50:01 -05:00
|
|
|
(when (featurep! +gnuplot)
|
2021-01-09 03:12:56 -05:00
|
|
|
(package! gnuplot :pin "116cad8e09024223f97e81b0a4503cef20de9bf5")
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! gnuplot-mode :pin "601f6392986f0cba332c87678d31ae0d0a496ce7"))
|
2019-12-20 00:47:04 -05:00
|
|
|
(when (featurep! +ipython) ; DEPRECATED
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! ob-ipython :pin "7147455230841744fb5b95dcbe03320313a77124"))
|
2019-12-16 19:23:08 -05:00
|
|
|
(when (featurep! +jupyter)
|
2020-08-19 15:25:47 -04:00
|
|
|
(package! jupyter :pin "360cae2c70ab28c7a7848c0c56473d984f0243e5"))
|
2020-03-29 19:15:58 -04:00
|
|
|
(when (featurep! +journal)
|
2021-01-09 03:12:56 -05:00
|
|
|
(package! org-journal :pin "c0836483ae43e525bf7547b7a789d171eda84c84"))
|
2020-04-25 16:10:02 -04:00
|
|
|
(when (featurep! +noter)
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! org-noter :pin "9ead81d42dd4dd5074782d239b2efddf9b8b7b3d"))
|
2019-11-10 20:50:01 -05:00
|
|
|
(when (featurep! +pomodoro)
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! org-pomodoro :pin "aa07c11318f91219336197e62c47bc7a3d090479"))
|
2020-08-05 18:30:17 -04:00
|
|
|
(when (featurep! +pretty)
|
2020-10-11 16:33:25 -04:00
|
|
|
(package! org-superstar :pin "7f83636db215bf5a10edbfdf11d12a132864a914")
|
2020-08-05 18:30:17 -04:00
|
|
|
(package! org-fancy-priorities :pin "819bb993b71e7253cefef7047306ab4e0f9d0a86"))
|
2019-11-10 20:50:01 -05:00
|
|
|
(when (featurep! +present)
|
|
|
|
(package! centered-window
|
2020-01-14 22:32:11 -05:00
|
|
|
:recipe (:host github :repo "anler/centered-window-mode")
|
2020-04-30 02:02:21 -04:00
|
|
|
:pin "f50859941ab5c7cbeaee410f2d38716252b552ac")
|
2021-01-09 03:12:56 -05:00
|
|
|
(package! org-tree-slide :pin "d6e8e91433dfe4968f1343b483f2680f45a77d52")
|
|
|
|
(package! org-re-reveal :pin "47339ef6772c79849a9764716df8361649ea7bdc")
|
2020-08-27 07:15:14 +02:00
|
|
|
(package! revealjs
|
|
|
|
:recipe (:host github :repo "hakimel/reveal.js"
|
|
|
|
:files ("css" "dist" "js" "plugin"))
|
2020-10-21 18:52:44 -04:00
|
|
|
:pin "0582f57517c97a4c7bfeb58762138c78883f94c5"))
|
2020-03-29 18:48:23 -04:00
|
|
|
(when (featurep! +roam)
|
2021-01-09 03:12:56 -05:00
|
|
|
(package! org-roam :pin "15d864a500d90c9dc2e16d888e93343528ec3941"))
|
2018-10-10 22:00:30 +02:00
|
|
|
|
2019-06-28 16:53:26 +02:00
|
|
|
;;; Babel
|
2020-10-11 16:33:25 -04:00
|
|
|
(package! ob-async :pin "de1cd6c93242a4cb8773bbe115b7be3d4dd6b97e")
|
2019-06-28 16:53:26 +02:00
|
|
|
(when (featurep! :lang crystal)
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! ob-crystal :pin "d84c1adee4b269cdba06a97caedb8071561a09af"))
|
2019-06-28 16:53:26 +02:00
|
|
|
(when (featurep! :lang go)
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! ob-go :pin "2067ed55f4c1d33a43cb3f6948609d240a8915f5"))
|
2020-03-10 01:46:59 -04:00
|
|
|
(when (featurep! :lang hy)
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! ob-hy :pin "a42ecaf440adc03e279afe43ee5ef6093ddd542a"))
|
2019-06-28 16:53:26 +02:00
|
|
|
(when (featurep! :lang nim)
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! ob-nim :pin "bf1642cb93f0a898804dc13fd9408d2964403bd2"))
|
2019-06-28 16:53:26 +02:00
|
|
|
(when (featurep! :lang racket)
|
2020-01-14 22:32:11 -05:00
|
|
|
(package! ob-racket
|
|
|
|
:recipe (:host github :repo "DEADB17/ob-racket")
|
2020-04-30 02:02:21 -04:00
|
|
|
:pin "d8fd51bddb019b0eb68755255f88fc800cfe03cb"))
|
2019-06-28 16:53:26 +02:00
|
|
|
(when (featurep! :lang rest)
|
2021-01-09 03:12:56 -05:00
|
|
|
(package! ob-restclient :pin "0ebfc7c5ebf96d2fe1a476439831363a5a43b9b6"))
|
2019-12-19 13:19:53 -05:00
|
|
|
(when (featurep! :lang scala)
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! ob-ammonite :pin "39937dff395e70aff76a4224fa49cf2ec6c57cca"))
|
2019-06-28 16:53:26 +02:00
|
|
|
|
2019-11-10 20:50:01 -05:00
|
|
|
;;; Export
|
2019-06-28 16:53:26 +02:00
|
|
|
(when (featurep! +pandoc)
|
2020-04-30 02:02:21 -04:00
|
|
|
(package! ox-pandoc :pin "aa37dc7e94213d4ebedb85c384c1ba35007da18e"))
|
2019-08-29 14:56:31 +02:00
|
|
|
(when (featurep! +hugo)
|
2019-10-25 20:29:00 -04:00
|
|
|
(package! ox-hugo
|
2020-01-14 22:32:11 -05:00
|
|
|
:recipe (:host github :repo "kaushalmodi/ox-hugo" :nonrecursive t)
|
2021-01-09 03:12:56 -05:00
|
|
|
:pin "6bc8ee08023695fa167ac0ddf1fc61e1975fa1ce"))
|
2019-11-08 12:54:10 +09:00
|
|
|
(when (featurep! :lang rst)
|
2020-08-19 15:25:47 -04:00
|
|
|
(package! ox-rst :pin "99fa790da55b57a3f2e9aa187493ba434a64250e"))
|