Files
vault/Technical/Emacs/Org Roam.md
Zaine 129ce1442b
Some checks failed
Build Quartz Notes / build (push) Failing after 20s
13
2026-07-13 09:16:09 +01:00

39 lines
1.6 KiB
Markdown
Executable File

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](https://www.orgroam.com/manual.html)
Here is the current config in my init.el
``` elisp
;;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))
```
- for the org-roam-ui (the graphical interface for nodes): [org-roam-ui](https://github.com/org-roam/org-roam-ui)
- an article: [example-org-roam-workflow.org](https://gist.github.com/nickanderson/00005b5b03e323a65ada98c5fa5ebb11)
- An article to read: [How i use org in 2023](https://cmdln.org/2023/03/25/how-i-org-in-2023/)
- An article: [org-roam-guide](https://jethrokuan.github.io/org-roam-guide/)
- An article: [Own your second brain](https://ianjones.info/own-your-second-brain)
- article: [my-org-roam-workflows-for-taking-notes-and-writing-articles](https://honnef.co/articles/my-org-roam-workflows-for-taking-notes-and-writing-articles/)
- article: [how-i-use-org-roam-to-takes-notes-for-cs](https://michaelneuper.com/posts/how-i-use-org-roam-to-takes-notes-for-cs/)
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.
``` bash
timeout 10 emacs >/dev/null 2>&1
```
# Articles
- <https://orgmode.org/worg/index.html>