diff options
author | noa | 2025-04-29 15:19:53 +0800 |
---|---|---|
committer | noa | 2025-04-29 15:19:53 +0800 |
commit | 50a29e9f295d66421181fd71794401a567450c96 (patch) | |
tree | c135e1db5f4c480f8ca7c8cfba77d4d9c081896e | |
parent | 2b80a3c1f9c05f8b5d48c16a57ef2e4e11b21fec (diff) |
Add org node configuration
-rw-r--r-- | emacs/init.el | 17 |
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 |