From 34e4462f1bef1da0642a9eccb7ad15ebacf981c3 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Tue, 7 Jan 2025 21:47:39 +0100 Subject: [PATCH 1/3] add(yas): enable also in text-mode --- config.org | 1 + 1 file changed, 1 insertion(+) diff --git a/config.org b/config.org index c990b2b..8b4bfc0 100644 --- a/config.org +++ b/config.org @@ -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) ) From 0e722c06b590e941875af29fe2af838a92a5b441 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Tue, 7 Jan 2025 21:47:58 +0100 Subject: [PATCH 2/3] add(org-roam): show tags in org-roam-node-find This allows us to search for them as well --- config.org | 1 + 1 file changed, 1 insertion(+) diff --git a/config.org b/config.org index 8b4bfc0..fbc73df 100644 --- a/config.org +++ b/config.org @@ -957,6 +957,7 @@ 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))) ;; Add todo lists to org-agenda (custom-set-variables '(org-agenda-files (directory-files-recursively org-roam-directory "todo\\.org$"))) ) From cea6f3f2c0dd6ac9616b9d3d5403f7bca311e2fa Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Tue, 7 Jan 2025 21:48:45 +0100 Subject: [PATCH 3/3] add(org-roam): enable db autosync mode --- config.org | 1 + 1 file changed, 1 insertion(+) diff --git a/config.org b/config.org index fbc73df..7600947 100644 --- a/config.org +++ b/config.org @@ -958,6 +958,7 @@ Preserve indentation in SRC blocks :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$"))) )