diff options
Diffstat (limited to 'Emacs/.config')
-rw-r--r-- | Emacs/.config/emacs/config.org | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 2c2e8e8..767e3ad 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -1788,6 +1788,16 @@ Evil org for some nice bindings. (use-package evil-org :hook (org-mode-hook . evil-org-mode)) #+end_src +*** Org reveal +Org reveal allows one to export org files as HTML presentations via +reveal.js. Pretty nifty and it's easy to use. +#+begin_src emacs-lisp +(use-package ox-reveal + :after org + :init + (setq org-reveal-root "https://cdn.jsdelivr.net/npm/reveal.js" + org-reveal-theme "sky")) +#+end_src *** Org fragtog Toggle latex fragments in org mode so you get fancy maths symbols. I use latex a bit in org mode as it is the premier way of getting |