Update packages
All checks were successful
/ Test config on 20 (push) Successful in 27s

This commit is contained in:
Maciej 2024-11-11 07:58:11 +02:00
parent d15b0776b0
commit 34a2741886
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
4 changed files with 223 additions and 210 deletions

View file

@ -8,14 +8,16 @@
;; These packages are foundational dependency and possibly can be blocking.
;;; Code:
(use-package transient :ensure (:wait t))
(use-package diminish :ensure (:wait t))
(use-package company :ensure (:wait t))
(use-package transient :ensure t)
(use-package diminish :ensure t)
(use-package company :ensure t)
;; https://emacs-lsp.github.io/lsp-mode/page/performance/#use-plists-for-deserialization
;; This supposedly makes it faster.
(setenv "LSP_USE_PLISTS" "true")
(use-package lsp-mode :ensure (:wait t))
(use-package lsp-mode :ensure t)
(elpaca-wait)
(provide 'icejam-blocking)
;;; icejam-blocking.el ends here