From 9f56f5060122e574fe253153091e6dc51621049c Mon Sep 17 00:00:00 2001 From: "M. Ian Graham" Date: Tue, 12 Jul 2022 12:19:00 +0900 Subject: [PATCH] readme: Fix require in Quick Start --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c72730..a9e60f1 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ The minimal configuration consists in setting the directory in which you want to Let's say you'd like to store all your git repositories in the `~/code-root` directory. You'll want to add the following snippet in your Emacs configuration file: ```elisp -(require 'h) +(require 'my-repo-pins) (setq my-repo-pins-code-root "~/code-root") ```