Properly bootstrap Quelpa
Instead of pulling it using `use-package`, i now bootstrap it the official way.
This commit is contained in:
parent
339ddf5812
commit
b5f0952422
@ -74,14 +74,21 @@
|
|||||||
** Install and configure Quelpa
|
** Install and configure Quelpa
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+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
|
#+END_SRC
|
||||||
|
|
||||||
*** And quelpa-use-package, too!
|
*** And quelpa-use-package, too!
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package quelpa-use-package
|
(quelpa
|
||||||
:after quelpa)
|
'(quelpa-use-package
|
||||||
|
:fetcher git
|
||||||
|
:url "https://github.com/quelpa/quelpa-use-package.git"))
|
||||||
|
(require 'quelpa-use-package)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Set up the really basic things
|
** Set up the really basic things
|
||||||
|
Loading…
Reference in New Issue
Block a user