diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-11-16 08:16:01 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-11-16 08:16:01 +0000 |
commit | 9341b7c37fa55f220d25daf739e4c4c3cf6f53d8 (patch) | |
tree | d97b767c41a96c11d0128fce3cbfcd29e42176d5 | |
parent | f2a5f0b59ea5863babec668c6fab12ad2f19f406 (diff) |
added org-habits module to the correct place in config
Diffstat (limited to '')
-rw-r--r-- | doom.d/config.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doom.d/config.el b/doom.d/config.el index 12b51f2..87de480 100644 --- a/doom.d/config.el +++ b/doom.d/config.el @@ -104,9 +104,9 @@ matt@matthewlemon.com") ;; If you use `org' and don't want your org files in the default location below, ;; change `org-directory'. It must be set before org loads! (setq org-directory "~/org/") +(add-to-list 'org-modules 'org-habit) (after! org - (setq org-modules '(org-habit ol-bibtex)) (evil-set-initial-state 'org-capture-mode 'insert) ;; from https://www.reddit.com/r/emacs/comments/hzkyrb/org_capture_evil_go_into_insert_mode/ (setq org-directory "~/org/") (setq org-startup-indented nil) |