From 2759d15379500e9d029fc748045b290cecc14ac9 Mon Sep 17 00:00:00 2001 From: miheer vaidya Date: Sun, 18 Sep 2022 23:31:24 -0600 Subject: [PATCH 1/3] add example for doom config --- README.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.org b/README.org index 2690e66..fd7a3ae 100644 --- a/README.org +++ b/README.org @@ -32,6 +32,15 @@ Optionally you can install it via [[https://github.com/quelpa/quelpa][quelpa]] t (justl-recipe-width 25)) #+end_example +For [[https://github.com/doomemacs/doomemacs][doom emacs]], you can install as: + +#+begin_example elisp +(use-package! justl + :config + (map! :n "e" 'justl-exec-recipe) + ) +#+end_example + * Usage To list all the recipes present in your justfile, call From 6c1330153768f1ecf819d57630cbab4517901184 Mon Sep 17 00:00:00 2001 From: miheer vaidya Date: Mon, 19 Sep 2022 01:40:17 -0600 Subject: [PATCH 2/3] Update README.org Co-authored-by: Sibi Prabakaran --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.org b/README.org index fd7a3ae..16c4cc3 100644 --- a/README.org +++ b/README.org @@ -37,7 +37,7 @@ For [[https://github.com/doomemacs/doomemacs][doom emacs]], you can install as: #+begin_example elisp (use-package! justl :config - (map! :n "e" 'justl-exec-recipe) + (map! :n "e" 'justl-exec-recipe)) ) #+end_example From efbcc1211475846f7f7735ef04d9e0ef58e00207 Mon Sep 17 00:00:00 2001 From: miheer vaidya Date: Wed, 21 Sep 2022 15:58:11 -0600 Subject: [PATCH 3/3] fix additional paren --- README.org | 1 - 1 file changed, 1 deletion(-) diff --git a/README.org b/README.org index 16c4cc3..a983310 100644 --- a/README.org +++ b/README.org @@ -38,7 +38,6 @@ For [[https://github.com/doomemacs/doomemacs][doom emacs]], you can install as: (use-package! justl :config (map! :n "e" 'justl-exec-recipe)) - ) #+end_example * Usage