diff options
| author | benj <benj@rse8.com> | 2024-03-26 17:27:26 -0700 |
|---|---|---|
| committer | benj <benj@rse8.com> | 2024-03-26 17:27:26 -0700 |
| commit | 3df0e0822cd0a8dc0a3a917c5f5435f6bcd5c9d3 (patch) | |
| tree | 8d7b94431e1d8f8d0ee1febce73a58a6e0c18067 | |
| parent | 6e02b7ac273553a2e2411984255af8963da02f74 (diff) | |
| download | emacs-3df0e0822cd0a8dc0a3a917c5f5435f6bcd5c9d3.tar emacs-3df0e0822cd0a8dc0a3a917c5f5435f6bcd5c9d3.tar.gz emacs-3df0e0822cd0a8dc0a3a917c5f5435f6bcd5c9d3.tar.bz2 emacs-3df0e0822cd0a8dc0a3a917c5f5435f6bcd5c9d3.tar.lz emacs-3df0e0822cd0a8dc0a3a917c5f5435f6bcd5c9d3.tar.xz emacs-3df0e0822cd0a8dc0a3a917c5f5435f6bcd5c9d3.tar.zst emacs-3df0e0822cd0a8dc0a3a917c5f5435f6bcd5c9d3.zip | |
make org-journal play nice with org states
Diffstat (limited to '')
| -rw-r--r-- | init.el | 17 |
1 files changed, 3 insertions, 14 deletions
@@ -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)) |
