From b9513bf672a406472117359e1ca9f8edacfca2d8 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Mon, 10 Feb 2025 09:37:54 -0500 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3928320..ce4e25e 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,8 @@ To install *outline-indent* from MELPA: ``` emacs-lisp (use-package outline-indent :ensure t + :defer t + :commands outline-indent-minor-mode :custom (outline-indent-ellipsis " ▼ ")) ``` @@ -89,7 +91,7 @@ Once installed, the minor mode can be activated using: ### Automatic activation using hooks -The minor mode can also be automatically activated for a certain mode. For example for Python and YAML: +The minor mode can also be automatically activated for a certain modes. For example for Python and YAML: ``` emacs-lisp ;; Python (add-hook 'python-mode-hook #'outline-indent-minor-mode)