Go to file
Yann Esposito (Yogsototh) 626234c5b6
fix comment
2021-04-16 14:23:18 +02:00
LICENSE Initial commit 2020-11-22 22:46:44 +00:00
README.org fix readme 2020-11-23 00:10:41 +01:00
org-keynote.el fix comment 2021-04-16 14:23:18 +02:00

README.org

org-keynote

org-keynote

This is the most minimal presentation mode I could write to simulate a keynote from an org-mode document.

Configuration

There are two hooks you could take advantage of. Typical doom-emacs configuration:

(use-package! org-keynote
  :config
  (add-hook 'org-keynote-mode-hook
            (lambda ()
              (org-sticky-header-mode -1)
              (doom/increase-font-size 3)
              (org-display-inline-images)))

  (add-hook 'org-keynote-mode-quit-hook
            (lambda ()
              (org-sticky-header-mode -1)
              (doom/reset-font-size)
              (org-remove-inline-images)))
  (map! :map org-keynote-mode-keymap
        :ni "<right>" #'org-keynote-next
        :ni "<left>" #'org-keynote-prev
        :ni "q" #'org-keynote-quit'))