mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-03-09 16:21:11 -07:00
JuliaEditorSupport/julia-emacs@5c940c4ba3 -> JuliaEditorSupport/julia-emacs@aadf29523a ProofGeneral/PG@d60382db08 -> ProofGeneral/PG@75c13f91b6 agda/agda@bb9e13d970 -> agda/agda@5cf984c3d2 ananthakumaran/exunit.el@12a1efd003 -> ananthakumaran/exunit.el@bef971bde5 ardumont/markdown-toc@29e5c0f33e -> ardumont/markdown-toc@d22633b654 babashka/neil@8d5ccdbd81 -> babashka/neil@74cc79e4b9 clojure-emacs/cider@15bd3b0265 -> clojure-emacs/cider@ae247d8845 clojure-emacs/clojure-mode@4679222109 -> clojure-emacs/clojure-mode@bddba12e96 emacs-ess/ESS@f8c464dc1b -> emacs-ess/ESS@bfe892db15 emacs-rustic/rustic@e77f62facc -> emacs-rustic/rustic@cb013cd217 emacs-straight/auctex@077874d25a -> emacs-straight/auctex@1939acb54b erlang/otp@2b2b39797f -> erlang/otp@f80e9c1c4a godotengine/emacs-gdscript-mode@248b73b1bd -> godotengine/emacs-gdscript-mode@dd44f1dfa5 greghendershott/racket-mode@150b057953 -> greghendershott/racket-mode@71f27c643d hakimel/reveal.js@33bfe3b233 -> hakimel/reveal.js@5abf24c1d8 haskell/haskell-mode@383b4b7775 -> haskell/haskell-mode@2dd755a5fa hhvm/hack-mode@86a981bd7b -> hhvm/hack-mode@0b117e7f25 hvesalai/emacs-scala-mode@661337d8aa -> hvesalai/emacs-scala-mode@50bcafa181 idris-hackers/idris-mode@85928dc4cc -> idris-hackers/idris-mode@d32b2396a8 jrblevin/markdown-mode@92802fae9e -> jrblevin/markdown-mode@9de2df5a9f mekeor/nael@9711443449 -> mekeor/nael@3ee1cf286d meow_king/zig-ts-mode@89b52c865c -> meow_king/zig-ts-mode@64611c6d51 minad/org-modern@9bbc44cc7e -> minad/org-modern@b4b5b1c864 nim-lang/nim-mode@625cc023bd -> nim-lang/nim-mode@4502f83fbb nix-community/nix-ts-mode@706bbfaf7f -> nix-community/nix-ts-mode@625306cf9c ocaml/dune@14df34d30d -> ocaml/dune@7a7d49206f ocaml/merlin@a0b096c243 -> ocaml/merlin@1c4148af05 org-roam/org-roam@c72702cf27 -> org-roam/org-roam@b4857fd7a1 rust-lang/rust-mode@ae161dca23 -> rust-lang/rust-mode@f68ddca5c2 seagle0128/grip-mode@26bdadf604 -> seagle0128/grip-mode@b8b9e603ed sogaiu/janet-ts-mode@0e4d04d648 -> sogaiu/janet-ts-mode@aba932a1a1 szermatt/emacs-bash-completion@762f28fefb -> szermatt/emacs-bash-completion@5b621db96e technomancy/fennel-mode@c1bccdec9e -> technomancy/fennel-mode@9c1dac3c39 tpapp/julia-repl@681efc14a7 -> tpapp/julia-repl@0173237a43 weijiangan/flycheck-golangci-lint@f7e36e19d6 -> weijiangan/flycheck-golangci-lint@51aede797d
29 lines
1.3 KiB
EmacsLisp
29 lines
1.3 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/clojure/packages.el
|
|
|
|
;; HACK Fix #5577. Paredit is a cider dependency. We install paredit ourselves
|
|
;; to get it from emacsmirror, because the original upstream is a custom
|
|
;; git server with shallow clones disabled.
|
|
(package! paredit
|
|
:recipe (:host github :repo "emacsmirror/paredit")
|
|
:pin "af075775af91f2dbc63b915d762b4aec092946c4")
|
|
|
|
;; HACK Forward declare these clj-refactor/cider deps so that their deps are
|
|
;; byte-compiled first.
|
|
(package! parseclj :pin "6af22372e0fe14df882dd300b22b12ba2d7e00b0")
|
|
(package! parseedn :pin "3407e4530a367b6c2b857dae261cdbb67a440aaa")
|
|
|
|
;;; Core packages
|
|
(package! clojure-mode :pin "bddba12e969c456236e2b6a1881017a6cafe64b4")
|
|
(when (and (modulep! +tree-sitter)
|
|
(treesit-available-p)
|
|
(> emacs-major-version 29)) ; requires 30+
|
|
(package! clojure-ts-mode :pin "96fdffcbe9e1b8ebf9ad14e23b06f62cc3422e22"))
|
|
(package! clj-refactor :pin "362cb46bf808dc42d2aaf022afe93048439680c4")
|
|
(package! cider :pin "ae247d88455c79d6c039d9c322347c77ab3ad11b")
|
|
(when (modulep! :checkers syntax -flymake)
|
|
(package! flycheck-clj-kondo :pin "e38c67ba9db1ea1cbe1b61ab39b506c05efdcdbf"))
|
|
(package! jet :pin "c9a92675efd802f37df5e3eab7858dbbeced6ea4")
|
|
(package! neil
|
|
:recipe (:host github :repo "babashka/neil" :files ("*.el"))
|
|
:pin "74cc79e4b936487635f964b4619a60fba46714d9")
|