summary refs log tree commit diff
diff options
context:
space:
mode:
authornoa2024-09-18 10:28:05 +0800
committernoa2024-09-18 10:28:05 +0800
commit3b44186bc9d3c6acb4b7821ac9c531c82900d38f (patch)
treecd2f58a62672bc064c5385ca17cfbeb346ee33b1
parent3fb605562994694dc402b33378b1eb49ab1512cc (diff)
Remove deft
-rw-r--r--emacs/init.el17
1 files changed, 0 insertions, 17 deletions
diff --git a/emacs/init.el b/emacs/init.el
index e7d3848..ea19545 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -737,20 +737,3 @@ The misspelled word is taken from OVERLAY.  WORD is the corrected word."
   ("<f12>" . howm-list-all)
   ("<C-f12>" . howm-create))
 (setopt howm-file-name-format "%Y-%m-%dT%H%M%S.md")
-
-
-;;; deft
-(require 'deft)
-(use-package deft
-  :ensure t
-  :custom
-  (deft-extensions '("md"))
-  (deft-directory "~/Documents/notes")
-  (deft-time-format nil)
-  (deft-separator " — ")
-  (deft-strip-summary-regexp
-   (concat "\\("
-           "[\n\t]" ;; blank
-           "\\|^#\\+[[:upper:]_]+:.*$" ;; org-mode metadata
-           "\\|^#+.*$" ;; markdown titles
-           "\\)")))