From 9a0e5e2635e8611b471678095804ea9d8e829c4b Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 22 Oct 2019 10:33:53 +0200 Subject: [PATCH] Update the org-projectile configuration Add a key binding, and set the path of the TODO file --- configuration.org | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/configuration.org b/configuration.org index 5d5f3ec..3cf460f 100644 --- a/configuration.org +++ b/configuration.org @@ -1787,7 +1787,17 @@ Because one is never enough. *** Repository-based ToDo management with Org mode #+BEGIN_SRC emacs-lisp -(use-package org-projectile) +(use-package org-projectile + :after + projectile + :defer t + :bind + (:map projectile-command-map + ("n" . org-projectile-project-todo-completing-read)) + :custom + (org-projectile-projects-file (expand-file-name "projects.org" org-directory)) + :config + (push (org-projectile-project-todo-entry) org-capture-templates)) #+END_SRC *** …and the same with Helm