Skip to content

Commit

Permalink
Remove bootstrapping of use-package
Browse files Browse the repository at this point in the history
use-package is now part of Emacs 29.
  • Loading branch information
alecigne committed Sep 24, 2023
1 parent 8f7f170 commit 212c36a
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions init.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;; * Loading `package.el'
;; * Packages-related configuration

(setq custom-file (expand-file-name "custom.el" user-emacs-directory))

Expand All @@ -13,15 +13,6 @@
("gnu" . 5)))
(package-initialize)

;; * Bootstrapping `use-package'

(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))

(eval-when-compile
(require 'use-package))

(setq use-package-always-defer t)

(use-package auto-package-update
Expand Down

0 comments on commit 212c36a

Please sign in to comment.