aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-ox-reveal.el
blob: 645afeadc73e51a59713652a57d5b720890debe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 (concat "file://" (getenv "REVEAL_JS_DIR")))
  (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