diff options
author | Yuchen Pei <id@ypei.org> | 2023-11-13 10:59:42 +1100 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2023-11-13 10:59:42 +1100 |
commit | 603d0c76960deee72895196b7cfcc8201ca0141a (patch) | |
tree | 78c1684426848315ab7773f407e0c11245b13701 | |
parent | 9c6e41fb12fb0fb355bb48696424c8d8973077c3 (diff) |
[emacs] Update org-agenda-prefix-format now that we use the task system
-rw-r--r-- | emacs/.emacs.d/init/ycp-org.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs/.emacs.d/init/ycp-org.el b/emacs/.emacs.d/init/ycp-org.el index 378e0c3..8364810 100644 --- a/emacs/.emacs.d/init/ycp-org.el +++ b/emacs/.emacs.d/init/ycp-org.el @@ -198,10 +198,10 @@ ((tags-todo "{^@.*}")) nil))) (setq org-agenda-prefix-format - '((agenda . "%-5:c%?-12t% s") - (todo . "%-4:c") - (tags . "%-4:c") - (search . "%-4:c"))) + '((agenda . "%?-12t% s") + (todo . "") + (tags . "") + (search . ""))) (setq org-agenda-use-tag-inheritance nil) (add-hook 'org-agenda-mode-hook #'hl-line-mode) (add-hook 'org-agenda-after-show-hook 'my-org-agenda-after-show) |