diff --git a/SwarselSystems.org b/SwarselSystems.org index eb2eb39..e430cb8 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -18716,11 +18716,14 @@ Provides previews for embark. I set the annotation-mode of marginalia to =heavy=. This gives even more information on the stuff that you are looking at. One thing I am missing from ivy is the highlighting on =mode=-commands based on the current state of the mode. Also, I do not understand all the shorthands used by marginalia yet. #+begin_src emacs-lisp - (use-package marginalia - :after vertico - :init - (marginalia-mode) - (setq marginalia-annotators '(marginalia-annotators-heavy marginalia-annotators-light nil))) + (use-package marginalia + :after vertico + :bind (:map minibuffer-local-map + ("M-A" . marginalia-cycle)) + :init + (marginalia-mode) + ;; (setq marginalia-annotators '(marginalia-annotators-heavy marginalia-annotators-light nil)) + ) #+end_src ***** nerd-icons-completion diff --git a/files/emacs/init.el b/files/emacs/init.el index fa8e689..d814435 100644 --- a/files/emacs/init.el +++ b/files/emacs/init.el @@ -713,9 +713,12 @@ create a new one." (use-package marginalia :after vertico + :bind (:map minibuffer-local-map + ("M-A" . marginalia-cycle)) :init (marginalia-mode) - (setq marginalia-annotators '(marginalia-annotators-heavy marginalia-annotators-light nil))) + ;; (setq marginalia-annotators '(marginalia-annotators-heavy marginalia-annotators-light nil)) + ) (use-package nerd-icons-completion :after (marginalia nerd-icons)