emacs-citar/citar@07d2a63c99 -> emacs-citar/citar@0f1786b7fe emacs-lsp/lsp-mode@12befaabe4 -> emacs-lsp/lsp-mode@dd61303b2d emacs-straight/eglot@3a5240d8fd -> emacs-straight/eglot@6b9c4faa52 emacs-tree-sitter/tree-sitter-langs@1c3d95d018 -> emacs-tree-sitter/tree-sitter-langs@365a4f7bf5 magit/forge@35cc600d62 -> magit/forge@d4e88507bf meain/evil-textobj-tree-sitter@041fcb9fbb -> meain/evil-textobj-tree-sitter@b4ef204ff8 tumashu/posframe@493b17f74a -> tumashu/posframe@570273bcf6 From this point on, Doom will be bumping magit and forge to tagged releases.
19 lines
943 B
EmacsLisp
19 lines
943 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/lsp/packages.el
|
|
|
|
(if (modulep! +eglot)
|
|
(progn
|
|
(package! eglot :pin "6b9c4faa5201915ab81fe470a872ebce8921fe51")
|
|
(when (modulep! :completion vertico)
|
|
(package! consult-eglot :pin "64262e72452f8fe6dd49d31bcdd4bd577b7d682d"))
|
|
(when (and (modulep! :checkers syntax)
|
|
(not (modulep! :checkers syntax +flymake)))
|
|
(package! flycheck-eglot :pin "09e37f4c726d9b565b040ba9e89215158d3bd6b6")))
|
|
(package! lsp-mode :pin "dd61303b2dc989a58f7dddd4c754f828a3f52107")
|
|
(package! lsp-ui :pin "072bb29152038518c2478813b82c8d04d07df84c")
|
|
(when (modulep! :completion ivy)
|
|
(package! lsp-ivy :pin "9ecf4dd9b1207109802bd1882aa621eb1c385106"))
|
|
(when (modulep! :completion helm)
|
|
(package! helm-lsp :pin "c2c6974dadfac459b1a69a1217441283874cea92"))
|
|
(when (modulep! :completion vertico)
|
|
(package! consult-lsp :pin "68583913168bf66fd4d542b2517a2dcab19c447c")))
|