diff options
author | noa | 2024-10-07 13:54:10 +0800 |
---|---|---|
committer | noa | 2024-10-07 13:54:10 +0800 |
commit | 022b54788c093ac9dfa542d141c005f246902043 (patch) | |
tree | 7ba9b3bcb1b3bef144113585406450f54a6a676c /emacs/init.el | |
parent | 6fe3e83f8e776d3c7ae427ccd299ec51ea74b8f0 (diff) |
Add simple xeft configuration
Diffstat (limited to 'emacs/init.el')
-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)) |