Skip to content

Commit

Permalink
Fix README use-package example
Browse files Browse the repository at this point in the history
  • Loading branch information
colonelpanic8 committed Aug 26, 2023
1 parent 125ee7f commit e91d892
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,13 @@ For those utilizing `use-package`, here's a streamlined setup:
#+BEGIN_SRC emacs-lisp
(use-package org-project-capture
:bind (("C-c n p" . org-project-capture-project-todo-completing-read))
:ensure t
:config
(defvar org-project-capture-backend
(make-instance 'YOUR-CHOSEN-BACKEND)) ; Replace with your backend of choice
(setq org-project-capture-projects-file "~/org/projects.org")
(org-project-capture-single-file) ; Or (org-project-capture-per-project)
:ensure t)
(progn
(setq org-project-capture-backend
(make-instance 'YOUR-CHOSEN-BACKEND)) ; Replace with your backend of choice
(setq org-project-capture-projects-file "~/org/projects.org")
(org-project-capture-single-file))
#+END_SRC

** Customization
Expand Down

0 comments on commit e91d892

Please sign in to comment.