Silex/docker.el@d5255a65b7 -> Silex/docker.el@f3adbf49e1 alphapapa/magit-todos@501c8db90a -> alphapapa/magit-todos@501c8db90a andras-simonyi/citeproc-el@cfa30b6c95 -> andras-simonyi/citeproc-el@54184baaff doomelpa/code-review@e4c34fa284 -> doomelpa/code-review@e4c34fa284 editorconfig/editorconfig-emacs@1651294334 -> editorconfig/editorconfig-emacs@648f0cf9ae emacs-citar/citar@07d2a63c99 -> emacs-citar/citar@07d2a63c99 emacs-lsp/dap-mode@b407773ebc -> emacs-lsp/dap-mode@496dd3a60f emacs-lsp/lsp-mode@5298775517 -> emacs-lsp/lsp-mode@12befaabe4 emacs-lsp/lsp-ui@00f1fecdfb -> emacs-lsp/lsp-ui@072bb29152 emacs-straight/crdt@9bf99e2ce3 -> emacs-straight/crdt@7f91efcc72 emacs-straight/eglot@8008255edd -> emacs-straight/eglot@3a5240d8fd emacs-tree-sitter/tree-sitter-langs@b2739d07fa -> emacs-tree-sitter/tree-sitter-langs@1c3d95d018 hcl-emacs/terraform-mode@a645c32a8f -> hcl-emacs/terraform-mode@abfc10f5e3 jacktasia/dumb-jump@3c2ab8dfff -> jacktasia/dumb-jump@cd65a74337 magit/forge@21d410c810 -> magit/forge@a56eb3cbb2 magit/magit@e777822720 -> magit/magit@cf94190410 nicolaisingh/saveplace-pdf-view@ee95460cd9 -> nicolaisingh/saveplace-pdf-view@70e9ec4056 purcell/envrc@2316e004c1 -> purcell/envrc@532ecdab48 tumashu/posframe@f4e9e509ba -> tumashu/posframe@493b17f74a
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 "cd65a743370ac7b1a12e9ef0a7371b285a2597fb")
|
|
(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"))))
|