NicolasPetton/pass@919d8e3 -> NicolasPetton/pass@a095d24 abo-abo/define-word@3af6825 -> abo-abo/define-word@6e4a427 editorconfig/editorconfig-emacs@da84471 -> editorconfig/editorconfig-emacs@d73333c emacs-lsp/dap-mode@041db8e -> emacs-lsp/dap-mode@612388d emacs-lsp/lsp-mode@61443f3 -> emacs-lsp/lsp-mode@dbfbe1a emacs-lsp/lsp-ui@49bc513 -> emacs-lsp/lsp-ui@94673cd emacs-straight/project@0003fe4 -> emacs-straight/project@a1997af emacsorphanage/terraform-mode@63fafc6 -> emacsorphanage/terraform-mode@a9fa5bd joaotavora/eglot@2172641 -> joaotavora/eglot@4c85df2 k1LoW/emacs-ansible@cf6b8f0 -> k1LoW/emacs-ansible@40af0d2 magit/forge@953764d -> magit/forge@e340c2b magit/magit@acfe22a -> magit/magit@2145477 millejoh/emacs-ipython-notebook@a019ee3 -> millejoh/emacs-ipython-notebook@917f2a0 nicolaisingh/saveplace-pdf-view@88e07be -> nicolaisingh/saveplace-pdf-view@b037091 realgud/realgud@ff66001 -> realgud/realgud@f73c039 spotify/dockerfile-mode@d31f768 -> spotify/dockerfile-mode@6a56c1c tmalsburg/helm-bibtex@8d84d8b -> tmalsburg/helm-bibtex@1bb81d7 tmalsburg/helm-bibtex@8d84d8b -> tmalsburg/helm-bibtex@1bb81d7 tmalsburg/helm-bibtex@8d84d8b -> tmalsburg/helm-bibtex@1bb81d7 tumashu/posframe@e1552c8 -> tumashu/posframe@ae8ac91
34 lines
1.5 KiB
EmacsLisp
34 lines
1.5 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 (featurep! :completion helm)
|
|
(package! helm))
|
|
|
|
;;
|
|
(package! dumb-jump :pin "ff9fc9360d39f5e07c1f480f8b0656b49606781b")
|
|
(when (featurep! :completion ivy)
|
|
(package! ivy-xref :pin "3d4c35fe2b243d948d8fe02a1f0d76a249d63de9"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-xref :pin "23f1174cfca7667d95828dcd388c655a4a9c877d"))
|
|
|
|
;; For dictionary and online lookup
|
|
(package! request :pin "0183da84cb45eb94da996cd2eab714ef0d7504cc")
|
|
|
|
(when (featurep! +docsets)
|
|
(package! dash-docs :pin "dafc8fc9f1ddb2e4e39e0b8d066c42d5d7ce8d06")
|
|
(when (featurep! :completion helm)
|
|
(package! helm-dash :pin "7f853bd34da666f0e9a883011c80f451b06f6c59"))
|
|
(when (featurep! :completion ivy)
|
|
(package! counsel-dash :pin "370d5f6f14b5294d0eb717f7b2a6a8e93df1ed24")))
|
|
|
|
(when (featurep! +dictionary)
|
|
(if IS-MAC
|
|
(package! osx-dictionary :pin "1b79ff64c72485cb078db9ab7ee3256b11a99f4b")
|
|
(package! define-word :pin "6e4a427503aef096484f88332962c346cdd10847")
|
|
(package! powerthesaurus :pin "93036d3b111925ebc34f747ff846cb0b8669b92e")
|
|
(when (featurep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|