Change default values for custom agenda files to nil

This commit is contained in:
Daniel - 2020-01-05 11:55:54 +01:00
parent 8f3403e132
commit c3df9ef92b
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 5 additions and 5 deletions

10
init.el
View File

@ -958,31 +958,31 @@ With given ARG, display files in `db/important-document-path."
;; Agenda
(defcustom db/org-default-work-file ""
(defcustom db/org-default-work-file nil
"Path to default org-mode file at work."
:group 'personal-settings
:type 'string
:set #'db/update-org-agenda-files)
(defcustom db/org-default-home-file ""
(defcustom db/org-default-home-file nil
"Path to default org-mode file at home."
:group 'personal-settings
:type 'string
:set #'db/update-org-agenda-files)
(defcustom db/org-default-notes-file ""
(defcustom db/org-default-notes-file nil
"Path to default org-mode file for notes."
:group 'personal-settings
:type 'string
:set #'db/update-org-agenda-files)
(defcustom db/org-default-refile-file ""
(defcustom db/org-default-refile-file nil
"Path to default org-mode file for capturing."
:group 'personal-settings
:type 'string
:set #'db/update-org-agenda-files)
(defcustom db/org-default-pensieve-file ""
(defcustom db/org-default-pensieve-file nil
"Path to default org-mode file for private notes."
:group 'personal-settings
:type 'string