Add and configure the consult-org-roam package

This commit is contained in:
Gergely Polonkai 2023-10-20 08:18:00 +02:00
parent fe79b09035
commit 847c65ddc0
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 12 additions and 1 deletions

View File

@ -2311,7 +2311,6 @@ Lets see if i can get my brain more organised this way…
:if-new (file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n"))))
: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)
@ -2419,6 +2418,18 @@ And because even secretaries need a secretary today.
(org-clock-waybar-setup))
#+end_src
** ~consult-org-roam~
#+begin_src emacs-lisp
(use-package consult-org-roam
:config
(consult-org-roam-mode)
:bind (:map goto-map
("r" . consult-org-roam-search)
:map global-map
("C-c n f" . consult-org-roam-file-find)))
#+end_src
** ~ob-mermaid~, to generate Mermaid diagrams
#+begin_src emacs-lisp