summaryrefslogtreecommitdiffstats
path: root/lisp/init-org.el
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2021-06-06 22:56:05 +0200
committerMartin Polden <mpolden@mpolden.no>2021-06-06 22:59:44 +0200
commitf82919da918b1a94e6476f25f1dc42f3d67587fb (patch)
tree42ffbd5315850ae288369a9cdfad249e239fe065 /lisp/init-org.el
parent2689ee4208807e7907d03a6bf79ae282c4b7b7ef (diff)
org: Enable ox-rss
Diffstat (limited to 'lisp/init-org.el')
-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