Properly bootstrap Quelpa

Instead of pulling it using `use-package`, i now bootstrap it the official way.
This commit is contained in:
Gergely Polonkai 2020-11-01 06:07:11 +01:00
parent 339ddf5812
commit b5f0952422
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 10 additions and 3 deletions

View File

@ -74,14 +74,21 @@
** Install and configure Quelpa
#+BEGIN_SRC emacs-lisp
(use-package quelpa)
(unless (package-installed-p 'quelpa)
(with-temp-buffer
(url-insert-file-contents "https://raw.githubusercontent.com/quelpa/quelpa/master/quelpa.el")
(eval-buffer)
(quelpa-self-upgrade)))
#+END_SRC
*** And quelpa-use-package, too!
#+BEGIN_SRC emacs-lisp
(use-package quelpa-use-package
:after quelpa)
(quelpa
'(quelpa-use-package
:fetcher git
:url "https://github.com/quelpa/quelpa-use-package.git"))
(require 'quelpa-use-package)
#+END_SRC
** Set up the really basic things