~heckyel/emacs-personal

6d5058644ba7b7009045bbae287ff16f20e421a5 — Jesús 1 year, 7 months ago 8d182df
Fix path reveal.js
2 files changed, 2 insertions(+), 2 deletions(-)

M .env.example
M modules/init-ox-reveal.el
M .env.example => .env.example +1 -1
@@ 6,5 6,5 @@ EMACS_EMAIL="user@example.org"
ANGULAR_SERVER_DIR="/usr/local/lib/node_modules/@angular/language-server"
NODEJS_MODULE_DIR="/usr/local/lib/node_modules"

REVEAL_JS_FILE="/path/to/reveal.js"
REVEAL_JS_DIR="/path/to/reveal.js"
REVEAL_CSS_FILE="/path/to/highlight/night-owl.css"

M modules/init-ox-reveal.el => modules/init-ox-reveal.el +1 -1
@@ 7,7 7,7 @@
(use-package ox-reveal
  :ensure ox-reveal
  :config
  (setq org-reveal-root (getenv (concat "file://" "REVEAL_JS_FILE")))
  (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)