summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2025-07-05 05:49:32 +0100
committerGrégoire Duchêne <gduchene@awhk.org>2025-07-05 05:49:32 +0100
commit55f97517644213c38b4daabd4cbf0d181d055f04 (patch)
treeaf91d3e93b22f3f9a1ffd534f5216ca576c6090b
parent44968e474c3e0ec470f6b142a685ac03ab062c7d (diff)
emacs: Bind ‘C-c n c’ to ‘org-roam-capture’
-rw-r--r--emacs/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 516880f..a1d4730 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -304,7 +304,8 @@
(use-package org-roam
:config (org-roam-db-autosync-enable)
- :bind ("C-c n f" . org-roam-node-find)
+ :bind (("C-c n c" . org-roam-capture)
+ ("C-c n f" . org-roam-node-find))
:custom
((org-id-locations-file (my/data-file-name "org-id-locations"))
(org-roam-db-location (my/data-file-name "org-roam.db")))