Files
vault/Technical/Emacs/Org Roam.md
Zaine 8664b217df
All checks were successful
Build Quartz Notes / build (push) Successful in 52s
fix
2026-06-02 15:12:22 +01:00

1.6 KiB

This base will contain information on org roam. Although its closely linked to the GTD node, that one will contain articles, notes and videos related to how to get things done.

Main

User Manual

Here is the current config in my init.el

;;roam config
(use-package org-roam
  :ensure t
  :custom
  (org-roam-directory "~/master-folder/org_files/org_roam")
  :bind (("C-c n l" . org-roam-buffer-toggle)
   ("C-c n f" . org-roam-node-find)
   ("C-c n i" . org-roam-node-insert))
  :config
  (org-roam-setup))

The command below starts emacs in a terminal and kills it after 10 seconds. this is useful for when I add a note in the main machine, but the server's DB doesn't pick up the changes until Emacs is restarted in the server.

timeout 10 emacs >/dev/null 2>&1  

Articles