Make diminish non-blocking
Some checks failed
/ Test config on 20 (push) Failing after 37s

Further lowers the startup time
This commit is contained in:
Maciej 2025-01-06 11:36:39 +02:00
parent 0ec8f700af
commit 46b86fc5a9
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
4 changed files with 31 additions and 23 deletions

View file

@ -5,6 +5,9 @@
(require 'icejam-prog-mode)
(require 'icejam-transient)
;; Dash is a package that creates terse and more natural to me functions to
;; do basic things in Elisp.
(use-package dash :ensure t :defer t)
(use-package lispy :ensure t :defer t)
(use-package aggressive-indent :ensure t :defer t)
@ -32,6 +35,7 @@
(icejam-set-indent 2) ;; Default indentation of 2 characters
(column-enforce-n 80)
(dash-fontify-mode t) ;; Fontify dash variables
(lispy-mode t) ;; Pseudomodal editing for lisp code
(aggressive-indent-mode) ;; Indent lisp automatically