Commit 67c8de32d6b0
.emacs.d/emacs.el
@@ -893,6 +893,8 @@ point reaches the beginning or end of the buffer, stop there."
(setq org-bullets-face-name (quote org-bullet-face))
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))))
+(use-package org-habit)
+
(setq org-todo-keywords
(quote ((sequence "TODO(t)" "PROGRESS(p)" "PAUSED" "BLOCKED" "REVIEW" "|" "DONE(d!)" "ARCHIVED")
(sequence "REPORT(r!)" "BUG" "KNOWNCAUSE" "|" "FIXED(f!)")
.emacs.d/emacs.org
@@ -1724,6 +1724,11 @@
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))))
#+END_SRC
+ Let's also load =org-habit= module to deal with habits =TODO(s)=.
+
+ #+BEGIN_SRC emacs-lisp
+ (use-package org-habit)
+ #+END_SRC
Let's also define the default /todo-keywords/ and the workflow
between them.