summary refs log tree commit diff
path: root/emacs/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 71bf065..d373122 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -610,6 +610,23 @@
   ;; :hook ((markdown-mode . noa/set-buffer-name-to-markdown-title))
   )
 
+;; Org node
+(use-package org-node
+  :after org
+  :ensure t
+  :bind (("M-s M-f" . org-node-find)
+         ("M-s M-i" . org-node-insert-link)
+         ("M-s M-s" . org-node-seq-dispatch))
+  :config (org-node-cache-mode)
+  :custom
+  (org-node-ask-directory "~/Documents/howm/")
+  (org-node-datestamp-format "%Y-%m-%d-%H%M%S")
+  (org-node-slug-fn (lambda (title) ""))
+  (org-node-seq-defs
+   (list (org-node-seq-def-on-filepath-sort-by-basename
+        "d" "Dailies" "~/Documents/howm/Diary/" nil t))))
+
+
 ;;; System administration
 
 (use-package proced