branch: externals/marginalia
commit f7adb6253f1a4826b4a0c8450ef0c3e942253cff
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
fix #14
---
README.md | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 61f4c7e..89c0b7c 100644
--- a/README.md
+++ b/README.md
@@ -32,8 +32,9 @@ specified by the variable `marginalia-classifiers`.
;; enabled right away. Note that this forces loading the package.
(marginalia-mode)
- ;; Enable richer, more heavy, annotations.
+ ;; Prefer richer, more heavy, annotations over the lighter default variant.
;; E.g. M-x will show the documentation string additional to the keybinding.
;; By default only the keybinding is shown as annotation.
- (setq marginalia-annotators 'marginalia-annotators-heavy))
+ ;; Note that there is the command `marginalia-toggle-annotators` to switch
between the annotators.
+ (setq marginalia-annotators '(marginalia-annotators-heavy
marginalia-annotators-light)))
~~~