From 0186494f9d33fbd1c9d6ce0adb894e58e254a0cf Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Thu, 14 Sep 2023 15:55:03 +0100 Subject: Adds ideas to home agenda and allows typing a space in ido buffer --- init.el | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'init.el') diff --git a/init.el b/init.el index 8dc8b23..458a30f 100644 --- a/init.el +++ b/init.el @@ -1236,6 +1236,9 @@ If failed try to complete the common part with `company-complete-common'" ("D" . org-roam-dailies-capture-date)) :bind-keymap ("C-c n D" . org-roam-mode-map) :config + ;; this should allow us to type spaces in ido buffer when creating new nodes + ;; from https://org-roam.discourse.group/t/org-roam-node-find-space-not-allowed-in-node-title/1847/6 + (define-key minibuffer-local-completion-map (kbd "SPC") 'self-insert-command) (defun mrl/search-roam () "Run consult-ripgrep on the org roam directory" (interactive) @@ -1372,6 +1375,8 @@ If failed try to complete the common part with `company-complete-common'" (org-agenda-sorting-strategy '(alpha-up deadline-down scheduled-down priority-down)))) (tags-todo "TODO=\"PROJECT\"" ((org-agenda-overriding-header "Projects") (org-agenda-sorting-strategy '(alpha-up)))) + (tags "idea" ((org-agenda-overriding-header "Ideas") + (org-agenda-sorting-strategy '(alpha-up)))) (tags-todo "TODO=\"NEXT\"" ((org-agenda-overriding-header "All Next Actions") (org-agenda-sorting-strategy '(alpha-up deadline-down scheduled-down priority-down)))) (tags-todo "TODO=\"TODO\"" ((org-agenda-overriding-header "TODO") -- cgit v1.2.3