mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
krzysztof-magosa/company-ansible@8d1ffbc -> krzysztof-magosa/company-ansible@79dd421 realgud/realgud@2cca776 -> realgud/realgud@94f2835 emacs-lsp/dap-mode@d10e254 -> emacs-lsp/dap-mode@e2086fc wbolster/emacs-direnv@1f93e3f -> wbolster/emacs-direnv@1daf479 Silex/docker.el@baba7f7 -> Silex/docker.el@a2092b3 editorconfig/editorconfig-emacs@5c67d22 -> editorconfig/editorconfig-emacs@19de0ec millejoh/emacs-ipython-notebook@b265205 -> millejoh/emacs-ipython-notebook@57e84c6 syohex/emacs-quickrun@55bbe5d -> syohex/emacs-quickrun@50e07e7 jacktasia/dumb-jump@b5185e3 -> jacktasia/dumb-jump@e8e9b0c magit/magit@55c5c7c -> magit/magit@68b5a13 magit/forge@c2fbce6 -> magit/forge@2e2d26c alphapapa/magit-todos@ad5663a -> alphapapa/magit-todos@a0e5d1f charignon/github-review@3fb7cc2 -> charignon/github-review@50c6bcc syohex/emacs-terraform-mode@6973d1a -> syohex/emacs-terraform-mode@2967e7b
33 lines
1.1 KiB
EmacsLisp
33 lines
1.1 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 "e8e9b0c2d1")
|
|
(when (featurep! :completion ivy)
|
|
(package! ivy-xref :pin "3d4c35fe2b"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-xref :pin "6b4a8bd91f"))
|
|
|
|
(when (featurep! +docsets)
|
|
(package! dash-docs :pin "111fd9b970")
|
|
(when (featurep! :completion helm)
|
|
(package! helm-dash :pin "7f853bd34d"))
|
|
(when (featurep! :completion ivy)
|
|
(package! counsel-dash :pin "370d5f6f14")))
|
|
|
|
(when (featurep! +dictionary)
|
|
(if IS-MAC
|
|
(package! osx-dictionary :pin "1b79ff64c7")
|
|
(package! define-word :pin "d8c76d503b")
|
|
(package! powerthesaurus :pin "81a262ec0c")
|
|
(package! request)
|
|
(when (featurep! +offline)
|
|
(package! wordnut :pin "feac531404")
|
|
(package! synosaurus :pin "14d34fc92a"))))
|