diff options
author | Jesús <heckyel@hyperbola.info> | 2022-05-05 06:57:57 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-05-05 06:57:57 +0800 |
commit | 8d182df96e63f8a1f0b093e2a5bbeb0d3bc60062 (patch) | |
tree | 42785b608834d806cf4369197e8698c8fb493650 /modules | |
parent | 242f5ec76594b45c7b0350fb58aebb0ee214bd17 (diff) | |
download | emacs-personal-8d182df96e63f8a1f0b093e2a5bbeb0d3bc60062.tar.lz emacs-personal-8d182df96e63f8a1f0b093e2a5bbeb0d3bc60062.tar.xz emacs-personal-8d182df96e63f8a1f0b093e2a5bbeb0d3bc60062.zip |
add reveal.js
Diffstat (limited to 'modules')
-rw-r--r-- | modules/init-ox-reveal.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/init-ox-reveal.el b/modules/init-ox-reveal.el new file mode 100644 index 0000000..94b7d56 --- /dev/null +++ b/modules/init-ox-reveal.el @@ -0,0 +1,14 @@ +;;; init-ox-reveal.el --- .Emacs Configuration -*- lexical-binding: t -*- +;;; Commentary: +;; + +;;; Code: +;; ox-reveal +(use-package ox-reveal + :ensure ox-reveal + :config + (setq org-reveal-root (getenv (concat "file://" "REVEAL_JS_FILE"))) + (setq org-reveal-highlight-css (getenv "REVEAL_CSS_FILE")) + (setq org-reveal-ignore-speaker-notes t)) +(provide 'init-ox-reveal) +;;; init-ox-reveal.el ends here |