Files
dot-emacs/lisp/init-marginalia.el

16 lines
514 B
EmacsLisp

;; Enable rich annotations using the Marginalia package
(use-package marginalia
;; Either bind `marginalia-cycle' globally or only in the minibuffer
:bind ( :map minibuffer-local-map
("M-n" . marginalia-cycle))
;; The :init configuration is always executed (Not lazy!)
:init
;; Must be in the :init section of use-package such that the mode gets
;; enabled right away. Note that this forces loading the package.
(marginalia-mode))
(provide 'init-marginalia)
;;; init-marginalia ends here