diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 927a73d..5ea9fc6 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -761,3 +761,12 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." ) ;; https://juanjose.garciaripoll.com/blog/managing-bibliographies-from-emacs/index.html + + +(use-package xeft + :ensure t + :custom + (xeft-directory "~/Documents/notes") + (xeft-filename-fn (lambda (search) + (format-time-string "%Y-%m-%dT%H%M%S.md"))) + (xeft-recursive t)) |