Update the org-projectile configuration
Add a key binding, and set the path of the TODO file
This commit is contained in:
parent
e3b3498148
commit
9a0e5e2635
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user