mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-24 12:00:24 +10:00
14 lines
594 B
EmacsLisp
14 lines
594 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/lsp/packages.el
|
|
|
|
(if (featurep! +eglot)
|
|
(progn
|
|
(package! eglot :pin "61b71ea769fa14887465517f70832861f7052816")
|
|
(package! project :pin "da0333a697b18f0a863c1b1523d2fc7991b31174"))
|
|
(package! lsp-mode :pin "fb4c35c6978415c4cf52f85230b527d311989063")
|
|
(package! lsp-ui :pin "25552041f5af110c282fe8a2c714dec0f7a2320e")
|
|
(when (featurep! :completion ivy)
|
|
(package! lsp-ivy :pin "20cac6296e5038b7131ee6f34a96635f1d30fe3c"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-lsp :pin "fc09aa0903ee6abe4955e9a6062dcea667ebff5a")))
|