summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-09-30 13:00:26 +0100
committerYann Herklotz <git@yannherklotz.com>2021-09-30 13:00:26 +0100
commita4c0379f604690f9249842eec44ff3219eb0ff06 (patch)
tree7f8b3020c1d2611c393e0b0785de086324463156
parent85f9fbc0fdef6310647d9457e9a242826f387877 (diff)
downloadorg-zettelkasten-a4c0379f604690f9249842eec44ff3219eb0ff06.tar.gz
org-zettelkasten-a4c0379f604690f9249842eec44ff3219eb0ff06.zip
Change require to ensure for package installation
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index e664f5a..0a31388 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ The method implemented in `org-zettelkasten` has been described in detail in a [
``` emacs-lisp
(use-package org-zettelkasten
- :require t
+ :ensure t
:config
(add-hook 'org-mode-hook #'org-zettelkasten-mode))
```
@@ -62,7 +62,7 @@ Then, you can activate the mode as follows:
``` emacs-lisp
(use-package zettelkasten
- :require t
+ :ensure t
:config
(zettelkasten-mode t))
```