From 87b9e6194532c9128d11e9c4932cb206f7e33027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tr=C3=A9meur?= Date: Mon, 17 Aug 2020 14:23:20 +0100 Subject: [PATCH] =?UTF-8?q?I=E2=80=99m=20experimenting=20with=20not=20usin?= =?UTF-8?q?g=20breadcrumbs=20in=20org-agenda?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- agenda.el | 2 +- init.el | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/agenda.el b/agenda.el index b70529e..e7c2649 100644 --- a/agenda.el +++ b/agenda.el @@ -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") diff --git a/init.el b/init.el index 1826f51..2d03d23 100644 --- a/init.el +++ b/init.el @@ -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)