Compare commits

..

3 commits

Author SHA1 Message Date
cea6f3f2c0 add(org-roam): enable db autosync mode 2025-01-07 21:48:45 +01:00
0e722c06b5 add(org-roam): show tags in org-roam-node-find
This allows us to search for them as well
2025-01-07 21:47:58 +01:00
34e4462f1b add(yas): enable also in text-mode 2025-01-07 21:47:39 +01:00

View file

@ -759,6 +759,7 @@ https://github.com/victorhge/iedit
:hook
(prog-mode . yas-minor-mode)
(org-mode . yas-minor-mode)
(text-mode . yas-minor-mode)
:config
(yas-reload-all)
)
@ -956,6 +957,8 @@ Preserve indentation in SRC blocks
(org-roam-completion-everywhere t)
:config
(org-roam-setup)
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
(org-roam-db-autosync-mode)
;; Add todo lists to org-agenda
(custom-set-variables '(org-agenda-files (directory-files-recursively org-roam-directory "todo\\.org$")))
)