Emacs Org Refile: allow creation of parents and enabled all files

This commit is contained in:
Marcel Kapfer 2018-11-25 11:06:32 +01:00
parent 205133ca3b
commit c5388db0a8
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 4 additions and 1 deletions

View File

@ -471,7 +471,10 @@
"* %? \n CREATED: %u\n %i\n")))
;; set org refile targets
(setq org-refile-targets '(("~/cloud/org/projects.org" :maxlevel . 3)))
(setq org-refile-targets '((org-agenda-files :maxlevel . 3)))
;; allow creating new targets on refile
(setq org-refile-allow-creating-parent-nodes 'confirm)
;; warn of deadlines in the next seven days
(setq org-deadline-warning-days 7)