diff options
-rw-r--r-- | shoshimacs.el | 2 | ||||
-rw-r--r-- | shoshimacs.org | 15 |
2 files changed, 17 insertions, 0 deletions
diff --git a/shoshimacs.el b/shoshimacs.el index ae46dbd..01fe685 100644 --- a/shoshimacs.el +++ b/shoshimacs.el @@ -160,6 +160,8 @@ '((emacs-lisp . t) (shell . t))) +(package-install 'org-tree-slide) + (recentf-mode) (setq indent-tabs-mode nil) diff --git a/shoshimacs.org b/shoshimacs.org index 76c34d8..6b4bab7 100644 --- a/shoshimacs.org +++ b/shoshimacs.org @@ -635,6 +635,21 @@ this seems to be required to fontify source blocks (shell . t))) #+end_src +*** org-tree-slide + +This is a simple presentation mode for org documents that uses narrowing +to turn an org tree into slides. I've used it for many presentations, +including some at EmacsConf. Its great for doing presentation run throughs, +since you can edit at the same time you're using the slides. + +#+begin_src emacs-lisp + (package-install 'org-tree-slide) +#+end_src + +There are many settings for how it presents available, but I usually +just set them on the fly, depending on the presentation, rather than +in my main config. + ** recentf-mode this tracks recently operated on files (by default) and enables quick selection |