NicolasPetton/pass@c721604b3b -> NicolasPetton/pass@ed7031c5c3 Silex/docker.el@6997c86a24 -> Silex/docker.el@d5255a65b7 alphapapa/magit-todos@cadf29d1cc -> alphapapa/magit-todos@debb77b358 andras-simonyi/citeproc-el@290320fc57 -> andras-simonyi/citeproc-el@c61c98b9d2 doomelpa/code-review@26f426e992 -> doomelpa/code-review@c34ff1ee64 editorconfig/editorconfig-emacs@2fed9599bc -> editorconfig/editorconfig-emacs@4b81a59928 emacs-citar/citar-org-roam@761eed6678 -> emacs-citar/citar-org-roam@7d67dccf80 emacs-citar/citar@2c0547db57 -> emacs-citar/citar@885b86f673 emacs-lsp/lsp-mode@02c5ba59ce -> emacs-lsp/lsp-mode@fb88cc6b8b emacs-straight/eglot@f73594f589 -> emacs-straight/eglot@cd4e45b700 emacs-straight/rainbow-mode@24437ec2c6 -> emacs-straight/rainbow-mode@70ed10d410 emacs-tree-sitter/tree-sitter-langs@5eb24557f5 -> emacs-tree-sitter/tree-sitter-langs@20fbbb8573 emacsorphanage/quickrun@6f96318930 -> emacsorphanage/quickrun@248149b026 hcl-emacs/terraform-mode@39d2fd5bfc -> hcl-emacs/terraform-mode@e8b57df8c2 jacktasia/dumb-jump@d9503c157a -> jacktasia/dumb-jump@ede6a04187 magit/forge@ba35ffc9ba -> magit/forge@b16b6ec4f7 magit/magit@4881835572 -> magit/magit@54d37dc14c meain/evil-textobj-tree-sitter@9a9edd42a2 -> meain/evil-textobj-tree-sitter@220ceae065 purcell/envrc@33d01388ce -> purcell/envrc@1385e72a73 rejeep/prodigy.el@a3be00d3b9 -> rejeep/prodigy.el@cc68fa9d60 tmalsburg/helm-bibtex@ef07adfeda -> tmalsburg/helm-bibtex@bf184cc311 xuchunyang/osx-dictionary.el@0715e5a3ac -> xuchunyang/osx-dictionary.el@1f5a74f3e5 yoshiki/yaml-mode@3fcb36d603 -> yoshiki/yaml-mode@5b58248ab2 zx2c4/password-store@28cec11f1d -> zx2c4/password-store@b5e965a838
38 lines
1.6 KiB
EmacsLisp
38 lines
1.6 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/lookup/packages.el
|
|
|
|
;; HACK `dumb-jump' uses the `helm-build-sync-source' macro, but this requires
|
|
;; helm be loaded before `dumb-jump' is byte-compiled during installation.
|
|
;; To ensure this, we declare helm before dumb-jump.
|
|
(when (modulep! :completion helm)
|
|
(package! helm))
|
|
|
|
;;
|
|
(package! dumb-jump :pin "ede6a04187e79a29ef31d14760ac0d8d4c5f4cc5")
|
|
(when (modulep! :completion ivy)
|
|
(package! ivy-xref :pin "a82e8e117d2dd62c28b6a3e3d6e4cfb11c0bda38"))
|
|
(when (modulep! :completion helm)
|
|
(package! helm-xref :pin "ea0e4ed8a9baf236e4085cbc7178241f109a53fa"))
|
|
|
|
;; For dictionary and online lookup
|
|
(package! request :pin "01e338c335c07e4407239619e57361944a82cb8a")
|
|
|
|
(when (modulep! +docsets)
|
|
(package! dash-docs :pin "29848b6b347ac520f7646c200ed2ec36cea3feda")
|
|
(when (modulep! :completion helm)
|
|
(package! helm-dash :pin "7f853bd34da666f0e9a883011c80f451b06f6c59"))
|
|
(when (modulep! :completion ivy)
|
|
(package! counsel-dash :pin "8decb980f111ebe7027361ee252279a9076da261")))
|
|
|
|
(when (modulep! +dictionary)
|
|
(if (featurep :system 'macos)
|
|
(package! osx-dictionary :pin "1f5a74f3e5d7f3c443f07433951512cd99e820a6")
|
|
(package! define-word :pin "31a8c67405afa99d0e25e7c86a4ee7ef84a808fe")
|
|
;; REVIEW: This fork fixes SavchenkoValeriy/emacs-powerthesaurus#40.
|
|
(package! powerthesaurus
|
|
:recipe (:host github
|
|
:repo "doomelpa/powerthesaurus")
|
|
:pin "d9ebb866f6fce469102665f187266f0a041cfc4b")
|
|
(when (modulep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|