Some checks failed
/ Test config on 20 (push) Failing after 53s
Make the editor load faster by deferring as much as possible until later use. For example, LSP load is now deferred until first use and no longer blocking. Use only elixir-format from elixir-mode, for similar speed reasons. The rest of the package has been taken over by the treesitter version of the mode.
20 lines
502 B
EmacsLisp
20 lines
502 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)
|
|
|
|
;; Finally, wait for installation of these four packages.
|
|
(declare-function elpaca-wait "elpaca")
|
|
(elpaca-wait)
|
|
|
|
(provide 'icejam-blocking)
|
|
;;; icejam-blocking.el ends here
|