Add org-ehtml

This commit is contained in:
Ivan Malison 2015-02-07 17:34:48 -08:00
parent cd980ac112
commit 4268b982ce

View File

@ -730,6 +730,7 @@ the same tree node, and the headline of the tree node in the Org-mode file."
(add-to-list 'org-modules 'org-habit)
(add-to-list 'org-modules 'org-expiry)
(add-to-list 'org-modules 'org-notify)
(setq org-src-fontify-natively t)
(setq org-habit-graph-column 50)
(setq org-habit-show-habits-only-for-today t)
@ -785,6 +786,15 @@ the same tree node, and the headline of the tree node in the Org-mode file."
'(:time "100d" :actions -email :period "5d" :audible nil))
(org-notify-start 10)))
(use-package org-ehtml
:ensure t
:config
(progn
(setq org-ehtml-docroot (expand-file-name "~/Dropbox/org"))
(setq org-ehtml-allow-agenda t)
(setq org-ehtml-editable-headlines t)
(setq org-ehtml-everything-editable t)))
;; Agenda setup.
(unless (boundp 'org-gtd-file)
(defvar org-gtd-file "~/org/gtd.org"))