mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-10 15:33:36 -05:00
andras-simonyi/citeproc-el@f36650536b -> andras-simonyi/citeproc-el@f5217b9fdb emacs-citar/citar@5ef097beba -> emacs-citar/citar@75a85d8d86 emacs-lsp/dap-mode@b977566657 -> emacs-lsp/dap-mode@c81014ccc3 emacs-lsp/helm-lsp@54926afd10 -> emacs-lsp/helm-lsp@95f21f3f67 emacs-lsp/lsp-ivy@3ee14a24bb -> emacs-lsp/lsp-ivy@2927cbc776 emacs-lsp/lsp-mode@65a414ddeb -> emacs-lsp/lsp-mode@c74a723870 emacs-lsp/lsp-ui@bbb1aa0192 -> emacs-lsp/lsp-ui@030d369603 emacs-straight/dape@411e4b6126 -> emacs-straight/dape@81ee231de1 emacs-straight/eglot@a8cb16b833 -> emacs-straight/eglot@d2f34e5ce4 emacsorphanage/quickrun@bae8efb8c5 -> emacsorphanage/quickrun@7132464986 jacktasia/dumb-jump@42f97dea50 -> jacktasia/dumb-jump@21545d3b86 karthink/gptel@af821efe63 -> karthink/gptel@40f6950e80 mohkale/consult-eglot@2816f8aad7 -> mohkale/consult-eglot@d8b444aac3 purcell/envrc@510807ae96 -> purcell/envrc@48a2ee6a4d
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 "21545d3b8637b38f1930176f1c4782943ce3c0bd")
|
|
(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"))))
|