I’m experimenting with not using breadcrumbs in org-agenda

This commit is contained in:
trémeur 2020-08-17 14:23:20 +01:00
parent 0937c3d331
commit 87b9e61945
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
(setq org-agenda-files '("~/Documents/drive/org/calendar"))
(setq org-agenda-prefix-format '((agenda . "%?-12t%-30b%s")))
(setq org-agenda-prefix-format '((agenda . "%?-12t%s")))
(setq org-deadline-warning-days 0)
(load-file "~/.emacs.d/agenda-common.el")

View file

@ -272,9 +272,9 @@
(setq org-agenda-files (list "~/Documents/drive/org/calendar"
"~/Documents/drive/org/period.org"))
(setq org-agenda-prefix-format
'((todo . "%-2c%b")
(tags . "%-2c%b")
(agenda . "%-2c %?-12t%-35b%?-12s")))
'((todo . "%-2c %b")
(tags . "%-2c %b")
(agenda . "%-2c %?-12t%?-12s")))
(setq org-use-property-inheritance (quote ("LOCATION")))
(setq org-agenda-todo-ignore-scheduled t)
(setq org-agenda-todo-ignore-deadlines t)