summary refs log tree commit diff
path: root/emacs/init.el
diff options
context:
space:
mode:
authornoa2024-10-07 13:54:10 +0800
committernoa2024-10-07 13:54:10 +0800
commit022b54788c093ac9dfa542d141c005f246902043 (patch)
tree7ba9b3bcb1b3bef144113585406450f54a6a676c /emacs/init.el
parent6fe3e83f8e776d3c7ae427ccd299ec51ea74b8f0 (diff)
Add simple xeft configuration
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el9
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))