diff options
| author | Blake Romero <blake@blkrom.com> | 2025-10-01 17:10:10 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-10-01 17:10:10 +0100 |
| commit | 3524240e84f1854ed7c990fa8afc73a265f8f050 (patch) | |
| tree | 4cd2744ed2b4744ac15c528676802c06593d8b36 | |
| parent | 5f0d909aab823512b247808b38d1c33a03585c72 (diff) | |
Add MELPA repositories to package-archives
| -rw-r--r-- | emacs-config.org | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index c3308ea..a1dacfa 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -3,6 +3,16 @@ #+property: header-args:elisp+ :tangle "~/.config/emacs/init.el" * General + +** MELPA +https://melpa.org +Add and enable the MELPA repository for more available packages. +#+begin_src elisp + (require 'package) + (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) + (package-initialize) +#+end_src + ** Settings Quality of life settings. #+begin_src elisp |
