diff options
author | Matthew Lemon <y@yulqen.org> | 2023-09-14 15:55:03 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-09-14 15:55:03 +0100 |
commit | 0186494f9d33fbd1c9d6ce0adb894e58e254a0cf (patch) | |
tree | 4befba72ab5d02b0baf33dee64116deb64ba3388 | |
parent | 05ed057f26be7248fdd032b51e42aad9135032c8 (diff) |
Adds ideas to home agenda and allows typing a space in ido buffer
-rw-r--r-- | init.el | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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") |