diff options
Diffstat (limited to '.config/emacs/modules/bd--notes.el')
-rw-r--r-- | .config/emacs/modules/bd--notes.el | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/.config/emacs/modules/bd--notes.el b/.config/emacs/modules/bd--notes.el index 31aa5c8..0bfdc4a 100644 --- a/.config/emacs/modules/bd--notes.el +++ b/.config/emacs/modules/bd--notes.el @@ -55,14 +55,17 @@ then pastes the active region." "Format front matter KEYWORDS for skribe file type. KEYWORDS is a list of strings." (string-join keywords "\" \"")) - :custom - (denote-file-type 'org) - (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-journal-extras-directory (expand-file-name "~/dc/log")) - (denote-journal-extras-title-format 'day-date-month-year)) + :config + (setopt denote-file-type 'org + 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-journal-extras-directory (expand-file-name "~/dc/log") + denote-journal-extras-title-format 'day-date-month-year)) (provide 'bd--notes) |