Thanks to visit codestin.com
Credit goes to github.com

Skip to content

org-gtd 4.0 on doom emacs #259

@gpetrini

Description

@gpetrini

Hello!

I got interested in your product and decided to try it out. I am currently using doom emacs and followed your documentation for it as bellow:

(use-package! org-gtd
  :after org
  :init
  ;; Suppress upgrade warnings (must be set before package loads)
  (setq org-gtd-update-ack "4.0.0")
  :custom
  (org-gtd-directory "~/Dropbox/GTD/")
  (org-gtd-keyword-mapping '((todo . "TODO")
                             (next . "NEXT")
                             (wait . "WAIT")
                             (done . "DONE")
                             (canceled . "KILL")))
  :config
  (org-edna-mode)
  ;; Doom-style leader key bindings
  (map! :localleader
        (:prefix ("D" . "org-gtd")
         :desc "Capture"        "c"  #'org-gtd-capture
         :desc "Engage"         "e"  #'org-gtd-engage
         :desc "Process inbox"  "p"  #'org-gtd-process-inbox
         :desc "Show all next"  "n"  #'org-gtd-show-all-next
         :desc "Stuck projects" "s"  #'org-gtd-reflect-stuck-projects))
  ;; Clarify map binding
  (map! :map org-gtd-clarify-mode-map
        :desc "Organize this item" "C-c c" #'org-gtd-organize)
  ;; Quick task actions in agenda view
  (map! :map org-agenda-mode-map
        :desc "GTD quick actions" "C-c ." #'org-gtd-agenda-transient))

(setq org-gtd-capture-templates org-capture-templates)

(setq org-gtd-refile-prompt-for-types
      '(single-action project-heading project-task calendar
        someday delegated tickler habit knowledge quick-action trash))

The only changes that I made are to set the org-agenda files and org-todo keywords somewhere else. However, when I try to use Engage, no item shows up. In addition, when I try to clarify one item, the temporary WIP buffer never quits unless I cancel the clarification.

Sorry if my elisp code is a mess, I simply copied and pasted others' configs.

Let me know if there is any other information that I can provide.

I am pretty excited to give GTD a try on org-mode.
Thanks once again

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions