From 458ff84b5365eb2e97a87b3253bdbb4184f229b4 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Tue, 9 Oct 2018 22:39:22 -0400 Subject: [PATCH] [emacs] set up outline-minor-mode for prog-mode, with bindings --- init.org | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/init.org b/init.org index 68877ef..11ae4f0 100644 --- a/init.org +++ b/init.org @@ -921,6 +921,27 @@ There's no way I could top that, so I won't attempt to. :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default")))) #+end_src +*** Outline + +#+begin_src emacs-lisp +(use-package outline + :hook (prog-mode . outline-minor-mode) + :bind + (:map + outline-minor-mode-map + ("" . outline-toggle-children) + ("s-p" . outline-previous-visible-heading) + ("s-n" . outline-next-visible-heading) + :prefix-map amin--outline-prefix-map + :prefix "s-o" + ("TAB" . outline-toggle-children) + ("a" . outline-hide-body) + ("H" . outline-hide-body) + ("S" . outline-show-all) + ("h" . outline-hide-subtree) + ("s" . outline-show-subtree))) +#+end_src + * Borg's =layer/essentials= TODO: break this giant source block down into individual org sections. -- 2.20.1