mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-16 20:10:58 +01:00
16 lines
514 B
EmacsLisp
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
|