From 32ffd5aa35002fd978e01e33675efae4e0e37e44 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sun, 17 Sep 2023 16:01:37 +0100 Subject: Adds some agenda changes for Q4 Plan Also removes flyspell mode being on by default in org-mode. Adds another section to the Home agenda for projects in the Q4 plan. I don't understand why I had to add the category to + ((org-agenda-category-filter-preset '("+home" "+habits" "+refile" "+Q4_Plan" "+Birthday")))). --- init.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index d23336d..b97e881 100644 --- a/init.el +++ b/init.el @@ -153,7 +153,7 @@ Restart works only on graphic display." ;; turn off flycheck-mode (add-hook 'org-mode-hook (lambda () flycheck-mode -1)) ;; but turn on spelling -(add-hook 'org-mode-hook 'flyspell-mode) +;;(add-hook 'org-mode-hook 'flyspell-mode) ;; ID basics (setq user-full-name "Matthew Lemon" @@ -1338,7 +1338,8 @@ If failed try to complete the common part with `company-complete-common'" "~/Documents/org/refile.org" "~/Documents/org/mod.org" "~/Documents/org/calendar/cal.org" - "~/Documents/org/habits.org"))) + "~/Documents/org/habits.org" + "~/Documents/org/Plans/quarterly_plan_sept23.org"))) (setq org-agenda-window-setup 'other-window) (setq org-agenda-start-with-log-mode t) (setq org-agenda-include-diary t) @@ -1370,6 +1371,7 @@ If failed try to complete the common part with `company-complete-common'" ("h" "Home" ( (agenda) + (tags-todo "CATEGORY=\"Q4_Plan\"" ((org-agenda-overriding-header "Q4 Plan"))) (tags "TODO=\"DOING\"|REFILE+LEVEL=2|current|PRIORITY=\"A\"" ((org-agenda-overriding-header "DEAL") (org-agenda-sorting-strategy '(priority-down alpha-up)))) (tags-todo "TODO=\"WAITING\"" ((org-agenda-overriding-header "Home WAITING") @@ -1385,8 +1387,9 @@ If failed try to complete the common part with `company-complete-common'" (org-agenda-sorting-strategy '(alpha-up deadline-down scheduled-down priority-down)))) (tags-todo "TODO=\"TODO\"" ((org-agenda-overriding-header "TODO") (org-agenda-sorting-strategy '(alpha-up deadline-down scheduled-down priority-down))))) - ((org-agenda-category-filter-preset '("+home" "+habits" "+refile" "+Birthday")))) + ((org-agenda-category-filter-preset '("+home" "+habits" "+refile" "+Q4_Plan" "+Birthday")))) ("i" tags "idea") + ("q" tags-todo "CATEGORY=\"Q4_Plan\"" ((org-agenda-overriding-header "Q4 Plan"))) ("r" tags "LEVEL=2+REFILE" ((org-agenda-overriding-header "Stuff to refile"))))) (setq org-capture-templates -- cgit v1.2.3