From 755d375c32021a5f06d5c959f7b1babd99dc5234 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sat, 21 Sep 2024 10:29:44 -0700 Subject: [PATCH] Outli --- thoom-emacs/modules/thoom-editing.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/thoom-emacs/modules/thoom-editing.el b/thoom-emacs/modules/thoom-editing.el index dc47395..22c188c 100644 --- a/thoom-emacs/modules/thoom-editing.el +++ b/thoom-emacs/modules/thoom-editing.el @@ -77,3 +77,9 @@ (use-package vundo :ensure t :bind ("M-/" . vundo)) + +(use-package outli + :ensure (:host github :repo "jdtsmith/outli") + :bind (:map outli-mode-map + ("C-c C-p" . outline-back-to-headking)) + :hook ((prog-mode text-mode) . outli-mode))