From 3df0e0822cd0a8dc0a3a917c5f5435f6bcd5c9d3 Mon Sep 17 00:00:00 2001 From: benj Date: Tue, 26 Mar 2024 17:27:26 -0700 Subject: make org-journal play nice with org states --- init.el | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/init.el b/init.el index 5a668ac..9f11e7d 100644 --- a/init.el +++ b/init.el @@ -82,8 +82,7 @@ (defalias 'yes-or-no-p 'y-or-n-p) - :bind ( - ("C-x C-b" . 'ibuffer) + :bind (("C-x C-b" . 'ibuffer) ("C--" . 'undo) ("C-x C-d" . 'find-file) ("C-x r m" . 'bookmark-set) @@ -145,8 +144,7 @@ ("c r s" . 'consult-register-store) ("c r w" . 'consult-register))) :bind (("C-x b" . 'consult-buffer) - ("M-g M-g" . b'consult-goto-line) - ("M-g g" . b'consult-goto-line)) + ("M-g M-g" . 'consult-goto-line)) :hook (completion-list-mode . consult-preview-at-point-mode)) (use-package embark @@ -324,16 +322,7 @@ (org-level-color-stars-only nil) (org-todo-keywords - `((sequence "Backlog(b)" "Todo(t)" "In Progress(i)" "|" "Done(d)" "Cancelled(c)"))) - (org-capture-templates - `(("i" "Inbox" - entry (file+headline ,(concat org-dir "/inbox.org") "Inbox") - "* Todo [#C] %?\nCreated: %T\n" - :empty-lines 0) - ("j" "Journal Entry" - entry (file+datetree ,(concat org-dir "/journal.org")) - "* %?" - :empty-lines 0))) + `((sequence "PAUSED(p)" "TODO(t)" "IN PROGRESS(i)" "|" "DONE(d)" "CANCELLED(c)"))) (org-confirm-babel-evaluate nil)) -- cgit v1.2.3