summaryrefslogtreecommitdiff
path: root/emacs-init.org
diff options
context:
space:
mode:
authorfpi2020-01-18 20:07:28 +0100
committerfpi2020-01-29 17:58:25 +0100
commit5dd403c1ec92b5999cbc2599e2b499864cafb86c (patch)
treef1615ff4f9a4deef1f3f2529f05692621148b1a6 /emacs-init.org
parentRemove strike-through from org-*-done faces (diff)
Add Deft for knowledge management
Diffstat (limited to 'emacs-init.org')
-rw-r--r--emacs-init.org25
1 files changed, 25 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org
index 245bb2d..04cab0a 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -2192,6 +2192,31 @@ Skip project and sub-project tasks, habits, and project related tasks."
(t
nil)))))
#+end_src
+** Deft
+
+#+begin_quote
+Deft is an Emacs mode for quickly browsing, filtering, and editing
+directories of plain text notes, inspired by Notational Velocity. It
+was designed for increased productivity when writing and taking notes
+by making it fast and simple to find the right file at the right time
+and by automating many of the usual tasks such as creating new files
+and saving files.
+#+end_quote
+
+I use =Deft= to organize my =Zettelkasten=. It contains many single
+files about various topics. =Deft= handles searching and file
+creation.
+#+begin_src emacs-lisp
+(use-package deft
+ :ensure t
+ :custom ((deft-directory "~/zettel")
+ (deft-extensions '("org"))
+ (deft-default-extension "org")
+ (deft-use-filename-as-title t)
+ (deft-recursive t)
+ (deft-use-filter-string-for-filename t)))
+#+end_src
+
** Shell
#+begin_src emacs-lisp
(use-package shell