SavchenkoValeriy/emacs-powerthesaurus@02c9d11a3f -> SavchenkoValeriy/emacs-powerthesaurus@810a25056c Silex/docker.el@8d64cf4f84 -> Silex/docker.el@fbd896e313 alphapapa/magit-todos@60152d5c4e -> alphapapa/magit-todos@67fd80c2f1 bdarcus/citar@79512aefdf -> bdarcus/citar@ee98b94f7f editorconfig/editorconfig-emacs@3c03cef311 -> editorconfig/editorconfig-emacs@1d4acc3ec7 emacsorphanage/quickrun@78317951cd -> emacsorphanage/quickrun@c680f5137c joaotavora/eglot@83a61f673a -> joaotavora/eglot@fd9a5646d1 magit/forge@5586863f98 -> magit/forge@eed613db88 magit/magit@4e29d5827c -> magit/magit@b4be194de1 millejoh/emacs-ipython-notebook@6063cee7fb -> millejoh/emacs-ipython-notebook@e04e1e19c6 tkf/emacs-request@3336eaa97d -> tkf/emacs-request@c769cf33f2 vedang/pdf-tools@72ef774320 -> vedang/pdf-tools@326552eef7 zx2c4/password-store@eea24967a0 -> zx2c4/password-store@c4d8a1d815
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 "dbb915441a2b66f2fbb954ff5de2723c5a4771d4")
|
|
(when (featurep! :completion ivy)
|
|
(package! ivy-xref :pin "a82e8e117d2dd62c28b6a3e3d6e4cfb11c0bda38"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-xref :pin "ea0e4ed8a9baf236e4085cbc7178241f109a53fa"))
|
|
|
|
;; For dictionary and online lookup
|
|
(package! request :pin "c769cf33f2ac0a1a9798b508935c4b260e856ab5")
|
|
|
|
(when (featurep! +docsets)
|
|
(package! dash-docs :pin "29848b6b347ac520f7646c200ed2ec36cea3feda")
|
|
(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 "1a4479d9f44ef1e6e5f7643c172c32f6fe6cce21")
|
|
(package! define-word :pin "31a8c67405afa99d0e25e7c86a4ee7ef84a808fe")
|
|
(package! powerthesaurus :pin "810a25056c623f304de6a72123652d9c35936718")
|
|
(when (featurep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|