init-ox-reveal.el 402 B

123456789101112131415
  1. ;;; init-ox-reveal.el --- .Emacs Configuration -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;
  4. ;;; Code:
  5. ;; ox-reveal
  6. (use-package ox-reveal
  7. :ensure ox-reveal
  8. :config
  9. (setq org-reveal-root (concat "file://" (getenv "REVEAL_JS_DIR")))
  10. (setq org-reveal-highlight-css (getenv "REVEAL_CSS_FILE"))
  11. (setq org-reveal-ignore-speaker-notes t))
  12. (provide 'init-ox-reveal)
  13. ;;; init-ox-reveal.el ends here