diff options
-rw-r--r-- | org-gnosis.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/org-gnosis.el b/org-gnosis.el index 5a1fb22..a724db0 100644 --- a/org-gnosis.el +++ b/org-gnosis.el @@ -77,11 +77,21 @@ :type 'string :group 'org-gnosis) +(defcustom org-gnosis-todo-files org-agenda-files + "TODO files used for the journal entries." + :type '(repeat string) + :group 'org-gnosis) + (defcustom org-gnosis-completing-read-func #'org-completing-read "Function to use for `completing-read'." :type 'function :group 'org-gnosis) +(defcustom org-gnosis-bullet-point-char "+" + "String to indicate a bullet point." + :type 'string + :group 'org-gnosis) + (defface org-gnosis-face-tags '((t :inherit font-lock-type-face)) "Face for displaying gnosis with `org-gnosis-find'." |