Skip to content

Commit f6849c6

Browse files
committed
Install diminish package during initial bootstrap if it's missing
1 parent 7875d90 commit f6849c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

init.el

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
;;; Bootstrap use-package
2323
;; Install use-package if it's not already installed.
2424
;; use-package is used to configure the rest of the packages.
25-
(unless (package-installed-p 'use-package)
25+
(unless (or (package-installed-p 'use-package)
26+
(package-installed-p 'diminish))
2627
(package-refresh-contents)
2728
(package-install 'use-package)
2829
(package-install 'diminish))

0 commit comments

Comments
 (0)