From b428361a5d090a209a1d6c845996fbe64459b2e2 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 28 Aug 2023 09:56:07 +0200 Subject: [PATCH] Update Org Roam configuration --- configuration.org | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/configuration.org b/configuration.org index 75a8992..2fd5947 100644 --- a/configuration.org +++ b/configuration.org @@ -1205,12 +1205,15 @@ This emulates how Orgzly work with my current settings. ** Org Roam +Let’s see if i can get my brain more organised this way… + #+begin_src emacs-lisp (use-package org-roam + :after org + :ensure t :config - (setq org-roam-node-display-template (concat - "${title:*} " - (propertize "${tags:10}" 'face 'org-tag))) + (setq org-roam-node-display-template (concat "${title:*} " + (propertize "${tags:10}" 'face 'org-tag))) (org-roam-db-autosync-mode) (require 'org-roam-dailies) (require 'org-roam-protocol) @@ -1228,9 +1231,10 @@ This emulates how Orgzly work with my current settings. ("C-c n i" . org-roam-node-insert) ("C-c n c" . org-roam-capture) :map org-mode-map - ("C-M-i" . completion-at-point) + ("C-M-i" . completion-at-point) :map org-roam-dailies-map ("Y" . org-roam-dailies-capture-yesterday) + ("j" . org-roam-dailies-capture-today) ("T" . org-roam-dailies-capture-tomorrow)) :bind-keymap ("C-c n d" . org-roam-dailies-map))