summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/init-org.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index 101d80d..60c98c0 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -72,6 +72,9 @@
;; enable org-habit
(add-to-list 'org-modules 'org-habit)
+ ;; enable ox-rss
+ (add-to-list 'org-modules 'ox-rss)
+
;; show habits on future days
(setq org-habit-show-habits-only-for-today nil)
@@ -103,6 +106,9 @@
(use-package org-tempo
:after org)
+(use-package org-contrib
+ :ensure t)
+
(provide 'init-org)
;;; init-org.el ends here