diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-12-07 14:44:58 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-12-07 14:44:58 +0000 |
commit | 201f45a2fc48f3c2cc4f3472290dd224f3889ac7 (patch) | |
tree | 0a7e43fc94a03f11debcdb4c55fc111ff44d4782 /init.el | |
parent | 21fca81c39bf79d40d19c752fe0c822343e3dcfb (diff) |
trying denote
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -232,6 +232,16 @@ Restart works only on graphic display." ;; PACKAGES +(use-package denote + :ensure t + :config + (setq denote-directory (expand-file-name "~/Documents/denote/")) + (setq denote-known-keywords '("emacs" "clojure" "org-mode" "work")) + (setq denote-file-type nil) + (setq denote-prompts '(title keywords)) + (setq denote-date-prompt-use-org-read-date t) + ) + ;; Enable vertico (use-package vertico :ensure t |