From 27289a99c51b5d104417aea2a7c82447665c2e1c Mon Sep 17 00:00:00 2001 From: jdlugosz963 Date: Sun, 21 Aug 2022 02:59:30 +0200 Subject: Emacs: Add org-roam --- Emacs.org | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Emacs.org b/Emacs.org index 4e61821..c17cd5e 100644 --- a/Emacs.org +++ b/Emacs.org @@ -485,6 +485,27 @@ #+end_src +** Org roam + +#+begin_src emacs-lisp + + (use-package org-roam + :custom + (org-roam-directory (file-truename "~/Documents/org/roam/")) + :bind (("C-c n l" . org-roam-buffer-toggle) + ("C-c n f" . org-roam-node-find) + ("C-c n g" . org-roam-graph) + ("C-c n i" . org-roam-node-insert) + ("C-c n c" . org-roam-capture) + ;; Dailies + ("C-c n j" . org-roam-dailies-capture-today)) + :config + ;; If you're using a vertical completion framework, you might want a more informative completion interface + (setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag))) + (org-roam-db-autosync-mode)) + +#+end_src + * Development ** Languages *** Lsp -- cgit v1.2.3