From 85f9fbc0fdef6310647d9457e9a242826f387877 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 14 Sep 2021 11:14:32 +0100 Subject: Add badge to readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 59f581a..e664f5a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Zettelkasten mode for Emacs +[![melpazoid](https://github.com/ymherklotz/emacs-zettelkasten/actions/workflows/melpazoid.yml/badge.svg)](https://github.com/ymherklotz/emacs-zettelkasten/actions/workflows/melpazoid.yml) + | Package | Melpa | |---|---| | `zettelkasten` | [![MELPA](https://melpa.org/packages/zettelkasten-badge.svg)](https://melpa.org/#/zettelkasten) | -- cgit From a4c0379f604690f9249842eec44ff3219eb0ff06 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 30 Sep 2021 13:00:26 +0100 Subject: Change require to ensure for package installation --- README.md | 4 ++-- 1 file 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)) ``` -- cgit