diff options
Diffstat (limited to '.config/emacs/modules/bd--notes.el')
| -rw-r--r-- | .config/emacs/modules/bd--notes.el | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/.config/emacs/modules/bd--notes.el b/.config/emacs/modules/bd--notes.el index 3ec4a8d..fcc9e9a 100644 --- a/.config/emacs/modules/bd--notes.el +++ b/.config/emacs/modules/bd--notes.el @@ -6,12 +6,17 @@  (use-package denote    :hook    ((dired-mode . denote-dired-mode-in-directories)) -  :bind (("H-d f" . 'denote-open-or-create)) +  :bind (("H-d f" . 'denote-open-or-create) +         ("H-d j" . 'denote-journal-extras-new-or-existing-entry)) +  :config +  (require 'denote-journal-extras)    :custom    (denote-known-keywords '("ss" "writing" "reading" "art" "csu" "umass" "cs" "guix" "emacs" "programs" "mem"))    (denote-directory (expand-file-name "~/dc/"))    (denote-prompts '(title file-type keywords)) -  (denote-dired-directories (list denote-directory))) +  (denote-dired-directories (list denote-directory)) +  (denote-journal-extras-directory (expand-file-name "~/dc/log")) +  (denote-journal-extras-title-format 'day-date-month-year))  (provide 'bd--notes) | 
