Silex/docker.el@0874520 -> Silex/docker.el@d6233bd editorconfig/editorconfig-emacs@19de0ec -> editorconfig/editorconfig-emacs@9a73ff7 emacs-lsp/dap-mode@8f69dc2 -> emacs-lsp/dap-mode@7ad9157 emacs-lsp/lsp-mode@81d62d5 -> emacs-lsp/lsp-mode@d5f0410 emacs-lsp/lsp-ui@271b47c -> emacs-lsp/lsp-ui@c3e7a37 emacsorphanage/quickrun@2e37ce9 -> emacsorphanage/quickrun@c6ce1f3 gilbertw1/dash-docs@111fd9b -> gilbertw1/dash-docs@dafc8fc jacktasia/dumb-jump@d760aa8 -> jacktasia/dumb-jump@d86f59c joaotavora/eglot@d99a447 -> joaotavora/eglot@ac9239b magit/forge@09bf8ad -> magit/forge@6f299d2 magit/magit@b1b2683 -> magit/magit@ae82fcf millejoh/emacs-ipython-notebook@42134ad -> millejoh/emacs-ipython-notebook@ee31cdb paradoxxxzero/jinja2-mode@cfaa7bb -> paradoxxxzero/jinja2-mode@4540f99 tkf/emacs-request@216d570 -> tkf/emacs-request@912525c tumashu/posframe@093b29a -> tumashu/posframe@6285217 wbolster/emacs-direnv@1daf479 -> wbolster/emacs-direnv@f5484b0 yoshiki/yaml-mode@cecf4b1 -> yoshiki/yaml-mode@34648f2
38 lines
1.7 KiB
EmacsLisp
38 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 (featurep! :completion helm)
|
|
(package! helm))
|
|
|
|
;;
|
|
(package! dumb-jump :pin "d86f59c4c0eb9371dd84bc2aaff5d7445f04ba27")
|
|
(when (featurep! :completion ivy)
|
|
(package! ivy-xref :pin "3d4c35fe2b243d948d8fe02a1f0d76a249d63de9"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-xref :pin "6b4a8bd91f5eaf82f51bd31b03f6587387fe6983"))
|
|
|
|
;; For dictionary and online lookup
|
|
(package! request :pin "912525c772984c6af0fd84acd6699ee43d91037a")
|
|
|
|
(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 "08c71b1ff4fd07bf0c78d1fcf77efeaafc8f7443")
|
|
;; HACK Fix #2945: the main package is broken due to
|
|
;; SavchenkoValeriy/emacs-powerthesaurus#11
|
|
(package! powerthesaurus
|
|
:recipe (:host github :repo "maxchaos/emacs-powerthesaurus" :branch "pt-api-change")
|
|
:pin "4a834782a394f2dc70fc02d68b6962b44d87f0cf")
|
|
(when (featurep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|