[Emacs] First stab at org-window-habit

This commit is contained in:
2023-08-27 05:21:49 -06:00
parent d5bc284d3d
commit 5506c9edc3
3 changed files with 497 additions and 1 deletions

View File

@@ -871,3 +871,15 @@ alphanumeric characters only."
:bind ("C-c o s" . org-ql-find-in-agenda)
:commands org-ql-find-in-agenda)
#+end_src
** org-window-habit
#+begin_src emacs-lisp
(use-package org-window-habit
:straight nil
:demand t
:config
(progn
(require 'org)
(require 'org-habit)
(require 'org-agenda)
(org-window-habit-mode +1)))
#+end_src