Skip to content

Commit

Permalink
tweak(denote): better integration with Emacs' builtin packages
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Nov 20, 2023
1 parent 2392012 commit 029d78b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/me-notes.el
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
(use-package denote
:straight t
:commands denote-create-note denote-insert-link denote-show-backlinks-buffer
:hook (minemacs-after-startup . denote-modules-mode)
:hook (minemacs-after-startup . denote-rename-buffer-mode)
:hook (dired-mode . denote-dired-mode)
:init
(+map! :infix "n"
"n" #'denote-create-note
Expand All @@ -27,6 +30,7 @@
"m" #'denote-add-missing-links
"b" #'denote-show-backlinks-buffer)
:custom
(denote-modules '(project xref ffap)) ; Enable integration with Emacs modules
(denote-prompts '(title keywords)) ; These are the minimum viable prompts for notes
(denote-file-type 'org) ; I love org-mode format; reading ahead I'm setting this
(denote-date-prompt-use-org-read-date t)) ; And `org-read-date' is an amazing bit of tech
Expand Down

0 comments on commit 029d78b

Please sign in to comment.