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))