use-package diminish instead of requiring it

This commit is contained in:
Charlotte Van Petegem 2021-03-19 12:04:15 +01:00
parent 3f55399c0c
commit 305d6fce40
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 4 additions and 5 deletions

View file

@ -7,11 +7,11 @@
(setq use-package-verbose nil)
(setq use-package-always-ensure t))
;; Dependencies that inject `:keywords' into `use-package' should be
;; included before all other packages.
;; For :diminish in (use-package).
(require 'diminish)
;; For :general in (use-package). Needs to be included before
;; everything else so `use-package' definitely already knows about
;; `:general'.
(use-package diminish)
;; For :general in (use-package) and keybindings management.
(use-package general
:config
(general-evil-setup t)