summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorLLoyderino <adrijan.bjedov@gmail.com>2025-09-24 15:09:54 +0200
committerLLoyderino <adrijan.bjedov@gmail.com>2025-09-24 15:09:54 +0200
commit61167130e2ac34bd7cb5c70f713576731972b34c (patch)
treef28117552f41ae5f5c77fe0cfc8c066d49cd234f /init.el
parent37405c0803811af33b221a661de7b7271aa7ab80 (diff)
Enable org-roam
Diffstat (limited to 'init.el')
-rw-r--r--init.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/init.el b/init.el
index 1a9ef9b..dc4c4a3 100644
--- a/init.el
+++ b/init.el
@@ -97,6 +97,17 @@
`(("t" "Todo" entry (file ,(file-name-concat org-agenda-directory "Todo.org"))
"* TODO %?\n %i\n")))
+;; Roam
+(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 i" . org-roam-node-insert)
+ ("C-c n c" . org-roam-capture))
+ :config
+ (org-roam-db-autosync-mode))
+
;; Undo
(use-package vundo
:custom