Remove Quelpa

`use-package` now speaks `:vc`, so there’s no need for Quelpa anymore.
This commit is contained in:
Gergely Polonkai 2025-05-19 18:42:24 +02:00
parent 18f36bc277
commit 6cf739f12e
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4

View File

@ -62,26 +62,6 @@ It is built-in since 29.1, and lets hope I never get back using older version
(use-package bind-key)
#+end_src
*** Install Quelpa so we can add packages not present in MELPA yet
#+begin_src emacs-lisp
(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
*** Finally, combine the powers of use-package and quelpa
#+begin_src emacs-lisp
(quelpa
'(quelpa-use-package
:fetcher git
:url "https://github.com/quelpa/quelpa-use-package.git"))
(require 'quelpa-use-package)
#+end_src
* Custom functions and commands
This is a collection of functions and commands i wrote or stole from all around the internet.