From 3e1df5a8c23a6536d15d70df0e0f7f061f269617 Mon Sep 17 00:00:00 2001 From: luxick Date: Thu, 22 Oct 2020 21:10:31 +0200 Subject: [PATCH] Add missing require. --- README.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 1455507..a62e177 100644 --- a/README.org +++ b/README.org @@ -12,9 +12,10 @@ Points of intrest: Throughout this configuration I will use =use-package= to configure packages from melpa and other sources. [[https://github.com/jwiegley/use-package][Link to GitHub page]] #+BEGIN_SRC emacs-lisp + (require 'package) ;; Add melpa to the package repos (add-to-list 'package-archives - '("melpa" . "http://melpa.org/packages/")) + '("melpa" . "http://melpa.org/packages/")) (package-initialize)