Olivia5k/makefile-executor.el@d0a34c355f -> Olivia5k/makefile-executor.el@170d14d834 andras-simonyi/citeproc-el@e705911a29 -> andras-simonyi/citeproc-el@2623043b25 cjohansson/emacs-ssh-deploy@9311f9b4f8 -> cjohansson/emacs-ssh-deploy@94b56c0428 dash-docs-el/counsel-dash@370d5f6f14 -> dash-docs-el/counsel-dash@8decb980f1 editorconfig/editorconfig-emacs@1f6f16c24f -> editorconfig/editorconfig-emacs@6f6b5c1a95 emacs-citar/citar-org-roam@27105d0a95 -> emacs-citar/citar-org-roam@86e9861a49 emacs-citar/citar@4a302fcc40 -> emacs-citar/citar@5dac3d5bf2 emacs-straight/rainbow-mode@55a8c15782 -> emacs-straight/rainbow-mode@8e96388fb4 emacsfodder/kurecolor@d17a77d921 -> emacsfodder/kurecolor@ac67ceba85 emacsorphanage/quickrun@314beae43c -> emacsorphanage/quickrun@7a89313c07 emacsorphanage/terraform-mode@e560caaa9d -> emacsorphanage/terraform-mode@39d2fd5bfc jacktasia/dumb-jump@1dd583011f -> jacktasia/dumb-jump@0a783d1db6 millejoh/emacs-ipython-notebook@7b9b14435c -> millejoh/emacs-ipython-notebook@b2410dc96f tkf/emacs-request@38ed1d2e64 -> tkf/emacs-request@01e338c335 tmalsburg/helm-bibtex@78f5931e1c -> tmalsburg/helm-bibtex@8ebf50d5bd vedang/pdf-tools@bb0b71f5ba -> vedang/pdf-tools@bc2ba117e8 xuchunyang/osx-dictionary.el@1a4479d9f4 -> xuchunyang/osx-dictionary.el@0715e5a3ac yoshiki/yaml-mode@535273d5a1 -> yoshiki/yaml-mode@3fcb36d603 zx2c4/password-store@c4d8a1d815 -> zx2c4/password-store@26d2dae04b
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 (modulep! :completion helm)
|
|
(package! helm))
|
|
|
|
;;
|
|
(package! dumb-jump :pin "0a783d1db610ff1dc4e1b7869589cff16ff92f7a")
|
|
(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 "01e338c335c07e4407239619e57361944a82cb8a")
|
|
|
|
(when (modulep! +docsets)
|
|
(package! dash-docs :pin "29848b6b347ac520f7646c200ed2ec36cea3feda")
|
|
(when (modulep! :completion helm)
|
|
(package! helm-dash :pin "7f853bd34da666f0e9a883011c80f451b06f6c59"))
|
|
(when (modulep! :completion ivy)
|
|
(package! counsel-dash :pin "8decb980f111ebe7027361ee252279a9076da261")))
|
|
|
|
(when (modulep! +dictionary)
|
|
(if IS-MAC
|
|
(package! osx-dictionary :pin "0715e5a3ac659df32a0f0fabfbbeef0228fbd9a9")
|
|
(package! define-word :pin "31a8c67405afa99d0e25e7c86a4ee7ef84a808fe")
|
|
(package! powerthesaurus :pin "88bc5229cba1604c8f74db0a1456d99259d538cc")
|
|
(when (modulep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|