Update the org-projectile configuration

Add a key binding, and set the path of the TODO file
This commit is contained in:
Gergely Polonkai 2019-10-22 10:33:53 +02:00
parent e3b3498148
commit 9a0e5e2635
No known key found for this signature in database
GPG Key ID: 38F402C8471DDE93
1 changed files with 11 additions and 1 deletions

View File

@ -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