diff options
-rw-r--r-- | Emacs.org | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -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 |