mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
NicolasPetton/pass@1a9f610015 -> NicolasPetton/pass@896696999d andras-simonyi/citeproc-el@54184baaff -> andras-simonyi/citeproc-el@d232616851 emacs-lsp/lsp-mode@c77ba14106 -> emacs-lsp/lsp-mode@3a96df0dd7 emacs-straight/dape@8dbe56d7c7 -> emacs-straight/dape@1df7834306 emacs-tree-sitter/tree-sitter-langs@becd29c756 -> emacs-tree-sitter/tree-sitter-langs@59979a1f5c hcl-emacs/terraform-mode@5bdd734a87 -> hcl-emacs/terraform-mode@80383ff42b jacktasia/dumb-jump@737267a613 -> jacktasia/dumb-jump@42f97dea50 magit/forge@9db4d386a1 -> magit/forge@a31859547a magit/magit@04ee83d93f -> magit/magit@2f1ff91f12 magit/transient@25b994a565 -> magit/transient@f3f498aa15 mohkale/consult-eglot@b71499f4b9 -> mohkale/consult-eglot@2816f8aad7 purcell/envrc@4ca2166ac7 -> purcell/envrc@cb5f6d2a42
41 lines
1.7 KiB
EmacsLisp
41 lines
1.7 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 "42f97dea503367bf45c53a69de959177b06b0f59")
|
|
(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 "c22e3c23a6dd90f64be536e176ea0ed6113a5ba6")
|
|
|
|
(when (modulep! +docsets)
|
|
(package! dash-docs :pin "29848b6b347ac520f7646c200ed2ec36cea3feda")
|
|
(when (modulep! :completion vertico)
|
|
(package! consult-dash :pin "edb57bf8cdbef422b88667fadc83e1bb046957a6"))
|
|
(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 "6abfd6908b0dc773020466225c908000870b383b")
|
|
(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 "dffc75a455d0d4458b7555f4c051c51d71c8e18a")
|
|
(package! synosaurus :pin "690755ce88a50e65ab0441ce9aabe6341aae3964"))))
|