summaryrefslogtreecommitdiffstats
path: root/Emacs.org
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2022-08-21 02:59:30 +0200
committerjdlugosz963 <jdlugosz963@gmail.com>2022-08-21 02:59:30 +0200
commit27289a99c51b5d104417aea2a7c82447665c2e1c (patch)
tree3fe6e362cc544230ca31ddb3fbfb34d29c109987 /Emacs.org
parent4011d4b1ab7f73d5188aaa78defd78feed2f764c (diff)
downloaddotfiles-27289a99c51b5d104417aea2a7c82447665c2e1c.tar.gz
dotfiles-27289a99c51b5d104417aea2a7c82447665c2e1c.zip
Emacs: Add org-roam
Diffstat (limited to 'Emacs.org')
-rw-r--r--Emacs.org21
1 files changed, 21 insertions, 0 deletions
diff --git a/Emacs.org b/Emacs.org
index 4e61821..c17cd5e 100644
--- a/Emacs.org
+++ b/Emacs.org
@@ -485,6 +485,27 @@
485 485
486#+end_src 486#+end_src
487 487
488** Org roam
489
490#+begin_src emacs-lisp
491
492 (use-package org-roam
493 :custom
494 (org-roam-directory (file-truename "~/Documents/org/roam/"))
495 :bind (("C-c n l" . org-roam-buffer-toggle)
496 ("C-c n f" . org-roam-node-find)
497 ("C-c n g" . org-roam-graph)
498 ("C-c n i" . org-roam-node-insert)
499 ("C-c n c" . org-roam-capture)
500 ;; Dailies
501 ("C-c n j" . org-roam-dailies-capture-today))
502 :config
503 ;; If you're using a vertical completion framework, you might want a more informative completion interface
504 (setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
505 (org-roam-db-autosync-mode))
506
507#+end_src
508
488* Development 509* Development
489** Languages 510** Languages
490*** Lsp 511*** Lsp