emacs/lisp/icejam-blocking.el
Maciej Szlosarczyk d1ee6a12ed
Some checks failed
/ Test config on 20 (push) Failing after 49s
Use TS mode for Kotlin
2024-11-24 15:30:05 +02:00

25 lines
694 B
EmacsLisp

;;; icejam-blocking.el --- summary
;; Author: Maciej Szlosarczyk
;; Maintainer: Maciej Szlosarczyk
;; Version: 0.1-snapshot
;;; Commentary:
;; These packages are foundational dependency and possibly can be blocking.
;;; Code:
(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 t)
;; Finally, wait for installation of these four packages.
(declare-function elpaca-wait "elpaca")
(elpaca-wait)
(provide 'icejam-blocking)
;;; icejam-blocking.el ends here