commit 058fb71a4dade10dc19345791d37c30c00accab2 from: Isaac Meerleo date: Tue Jul 15 13:54:20 2025 UTC Fixed a syntax and load todo-keywords after org. Fixes missing "NEXT" commit - dbad940276e317f0d2cafd030dcec22597d92399 commit + 058fb71a4dade10dc19345791d37c30c00accab2 blob - cd16506ca6feb0cbfc3f8c3eee9ca3776e42d120 blob + 928d88e8baf4540c2156fa4d329f37a0a0461dcb --- custom.el +++ custom.el @@ -9,16 +9,9 @@ flyspell-mode olivetti-mode)) '(olivetti-style 'fancy) '(org-agenda-files '("~/org/agenda/")) - '(org-log-done 'time) - '(org-todo-keywords - '((sequence "TODO(t)" "NEXT(n)" "PROJ(p)" "LOOP(r)" "STRT(s)" "WAIT(w)" - "HOLD(h)" "IDEA(i)" "|" "DONE(d)" "KILL(k)") - (sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)") - (sequence "|" "OKAY(o)" "YES(y)" "NO(n)"))) - '(warning-suppress-log-types '((emacs) (emacs) (defvaralias))) - '(warning-suppress-types '((emacs) (defvaralias))) - '(which-function-mode t)) + '(org-log-done 'time)) +;; Set custom Agendas (setq org-agenda-custom-commands '(("g" "GTD View" ((todo "NEXT" @@ -29,11 +22,11 @@ (org-agenda-span 'day) (org-agenda-start-day nil) (org-agenda-skip-scheduled-if-done t) - (org-agenda-skip-deadline-if-done t) + (org-agenda-skip-deadline-if-done t) (org-agenda-skip-timestamp-if-done t))) (todo "WAIT" - ((org-agenda-overriding-header "Waiting On"))) + ((org-agenda-overriding-header "Waiting On"))) (todo "TODO" ((org-agenda-overriding-header "Remaining TODOs")))) @@ -44,6 +37,7 @@ (todo . " ") (tags . " ") (search . " "))))) + ("i" "Inbox" ((tags "-{.*}" ((org-agenda-overriding-header "Inbox (Refile with - SPC m r)") @@ -52,9 +46,24 @@ '((agenda . " %?-12t% s") (tags . " ") (todo . " ") - (search . " "))))))) - )) + (search . " "))))))))) +;; Set custom capture templates +(after! org + (add-to-list 'org-capture-templates + '("i" "Inbox" entry + (file "~/org/agenda/inbox.org") + "* %?"))) + +;; Set custom +(after! org + (setq org-todo-keywords + '((sequence "TODO(t)" "NEXT(n)" "PROJ(p)" "LOOP(r)" "STRT(s)" + "WAIT(w)" "HOLD(h)" "IDEA(i)" "|" "DONE(d)" "KILL(k)") + (sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)") + (sequence "|" "OKAY(o)" "YES(y)" "NO(n)")))) + + (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful.