andras-simonyi/citeproc-el@44f90cb296 -> andras-simonyi/citeproc-el@cfa30b6c95 editorconfig/editorconfig-emacs@d73b6392de -> editorconfig/editorconfig-emacs@1651294334 emacs-citar/citar@885b86f673 -> emacs-citar/citar@07d2a63c99 emacs-lsp/dap-mode@11431a26bc -> emacs-lsp/dap-mode@b407773ebc emacs-lsp/lsp-mode@acad044ebc -> emacs-lsp/lsp-mode@cec9e56390 emacs-straight/crdt@4a18cd8539 -> emacs-straight/crdt@9bf99e2ce3 emacs-straight/eglot@e7e49c789c -> emacs-straight/eglot@850cbd0430 emacs-straight/rainbow-mode@70ed10d410 -> emacs-straight/rainbow-mode@0740f31f30 emacs-tree-sitter/elisp-tree-sitter@02fe7b86d9 -> emacs-tree-sitter/elisp-tree-sitter@3cfab8a0e9 emacsorphanage/quickrun@373634cf51 -> emacsorphanage/quickrun@c58e2e4be5 jacktasia/dumb-jump@ede6a04187 -> jacktasia/dumb-jump@3c2ab8dfff k1LoW/emacs-ansible@1d7de8d3dd -> k1LoW/emacs-ansible@b4dca00f89 magit/forge@c3675fd068 -> magit/forge@4adb94d23c magit/magit@f9268a9598 -> magit/magit@ea0f07e549 purcell/envrc@8eb7401700 -> purcell/envrc@2316e004c1 vedang/pdf-tools@a1048bceb2 -> vedang/pdf-tools@30b50544e5
38 lines
1.6 KiB
EmacsLisp
38 lines
1.6 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 "3c2ab8dfff3a10d3c5f2efd69cfbc81fb5dbbd39")
|
|
(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 (featurep :system 'macos)
|
|
(package! osx-dictionary :pin "6abfd6908b0dc773020466225c908000870b383b")
|
|
(package! define-word :pin "31a8c67405afa99d0e25e7c86a4ee7ef84a808fe")
|
|
;; REVIEW: This fork fixes SavchenkoValeriy/emacs-powerthesaurus#40.
|
|
(package! powerthesaurus
|
|
:recipe (:host github
|
|
:repo "doomelpa/powerthesaurus")
|
|
:pin "d9ebb866f6fce469102665f187266f0a041cfc4b")
|
|
(when (modulep! +offline)
|
|
(package! wordnut :pin "feac531404041855312c1a046bde7ea18c674915")
|
|
(package! synosaurus :pin "14d34fc92a77c3a916b4d58400424c44ae99cd81"))))
|