Created
September 6, 2015 15:19
-
-
Save duelinmarkers/311aa928a218e0df962d to your computer and use it in GitHub Desktop.
Presentation-related excerpt of my emacs setup.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(add-to-list 'load-path "~/Projects/preso/org-present") | |
(autoload 'org-present "org-present" nil t) | |
(eval-after-load "org-present" | |
'(progn | |
(add-hook 'org-present-mode-hook | |
(lambda () | |
(org-present-big) | |
(org-display-inline-images) | |
(toggle-frame-fullscreen) | |
;; (org-present-hide-cursor) | |
;; (org-present-read-only) | |
)) | |
(add-hook 'org-present-mode-quit-hook | |
(lambda () | |
(org-present-small) | |
(org-remove-inline-images) | |
(toggle-frame-fullscreen) | |
(org-present-show-cursor) | |
(org-present-read-write) | |
)))) | |
(setq org-src-fontify-natively 't) | |
(require 'ob-clojure) | |
(setq org-babel-clojure-backend 'cider) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment