2017-12-08 22:59:42 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/org/packages.el
|
|
|
|
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! org
|
2020-01-23 04:15:26 -05:00
|
|
|
:recipe (:host github
|
2021-07-18 02:16:00 -04:00
|
|
|
;; Install cutting-edge version of org, and from a mirror because
|
|
|
|
;; code.orgmode.org's uptime is worse than Github's, and
|
|
|
|
;; emacs-straight/org is smaller and, therefore, quicker to download.
|
|
|
|
:repo "emacs-straight/org"
|
|
|
|
:files (:defaults "etc")
|
2020-11-09 21:37:23 -05:00
|
|
|
;; 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
|
2021-07-18 02:16:00 -04:00
|
|
|
;; return the output of a 'git describe ...' call in the repo's
|
2020-11-09 21:37:23 -05:00
|
|
|
;; root. Of course, this command won't work in a sparse clone,
|
2021-07-18 02:16:00 -04:00
|
|
|
;; and initiating these compilation step is a hassle, so...
|
|
|
|
:build t
|
2021-01-08 23:56:27 -05:00
|
|
|
:pre-build
|
2021-07-18 02:16:00 -04:00
|
|
|
(with-temp-file "org-version.el"
|
|
|
|
(insert "(defun org-release () \"9.5\")\n"
|
|
|
|
(format "(defun org-git-version (&rest _) \"9.5-%s\")\n"
|
|
|
|
(cdr (doom-call-process "git" "rev-parse" "--short" "HEAD")))
|
|
|
|
"(provide 'org-version)\n")))
|
|
|
|
:pin "b83ae593473810354504f0f182bfba4537d3c284")
|
|
|
|
(package! org-contrib
|
|
|
|
:recipe (:host nil :repo "https://git.sr.ht/~bzg/org-contrib")
|
|
|
|
:pin "fc81309cf6756607a836f93049a9393c2967c4e0")
|
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")
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! ox-clip :pin "05a14d56bbffe569d86f20b49ae31ed2ac7d1101")
|
|
|
|
(package! toc-org :pin "df4ad6ff15e3b02f6322305638a441a636b9b37e")
|
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-02-23 19:58:27 -05:00
|
|
|
(package! org-pdftools :pin "a5b61bca3f8c91b0859bb0df1a929f9a31a57b99"))
|
2019-07-28 16:29:53 +03:00
|
|
|
(when (featurep! :tools magit)
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! orgit :pin "f956d802f19ea495efa95af6c673588afeb3adc5")
|
2021-05-26 12:09:29 -04:00
|
|
|
(when (featurep! :tools magit +forge)
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! orgit-forge :pin "365b75609a9454dccf5681eb6075ca53bd32af85")))
|
2019-12-20 02:44:20 -05:00
|
|
|
(when (featurep! +brain)
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! org-brain :pin "46ca9f766322cff31279ecdf02251ff24a0e9431"))
|
2019-11-10 20:50:01 -05:00
|
|
|
(when (featurep! +dragndrop)
|
2021-02-23 19:58:27 -05:00
|
|
|
(package! org-download :pin "947ca223643d28e189480e607df68449c15786cb"))
|
2019-11-10 20:50:01 -05:00
|
|
|
(when (featurep! +gnuplot)
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! gnuplot :pin "7138b139d2dca9683f1a81325c643b2744aa1ea3")
|
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)
|
2021-07-07 00:00:11 +09:00
|
|
|
(package! jupyter :pin "1f0612eb936d36abab0f27b09cca691e81fc6e74"))
|
2020-03-29 19:15:58 -04:00
|
|
|
(when (featurep! +journal)
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! org-journal :pin "6c3a2fdb6c85253a32992a29edb976407bad4d77"))
|
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)
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! org-appear :pin "148aa124901ae598f69320e3dcada6325cdc2cf0")
|
2021-02-23 19:58:27 -05:00
|
|
|
(package! org-superstar :pin "9d64c42e5029910153ec74cb9b5747b074281140")
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! org-fancy-priorities :pin "44532ab8c25eb2c0028eecca7acd9e8ea8e2ff30"))
|
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-03-27 15:49:04 -04:00
|
|
|
(package! org-tree-slide :pin "9d2ba1df456d8d7c6372c8c294dbe3ee81540b33")
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! org-re-reveal :pin "cf000894f6e5d0627151e2bec5b1a54a311ad53e")
|
2020-08-27 07:15:14 +02:00
|
|
|
(package! revealjs
|
|
|
|
:recipe (:host github :repo "hakimel/reveal.js"
|
|
|
|
:files ("css" "dist" "js" "plugin"))
|
2021-07-18 02:16:00 -04:00
|
|
|
:pin "b18f12d964ef80bd9ffb061aae48ff4c15fb43ad"))
|
2020-03-29 18:48:23 -04:00
|
|
|
(when (featurep! +roam)
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! org-roam :pin "756f6215b672e267f986a3d6e494f5309825b91a"))
|
2018-10-10 22:00:30 +02:00
|
|
|
|
2019-06-28 16:53:26 +02:00
|
|
|
;;; Babel
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! ob-async :pin "9aac486073f5c356ada20e716571be33a350a982")
|
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"))
|
2021-04-29 17:42:35 -04:00
|
|
|
(when (featurep! :lang elixir)
|
|
|
|
(package! ob-elixir :pin "8990a8178b2f7bd93504a9ab136622aab6e82e32"))
|
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)
|
2021-07-18 02:16:00 -04:00
|
|
|
(package! ob-nim :pin "6fd060a3ecd38be37e4ec2261cd65760a3c35a91"))
|
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-07-18 02:16:00 -04:00
|
|
|
:pin "290b5d6b659addf99cb96a316fb24caa90ad0e77"))
|
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"))
|