mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-16 20:10:58 +01:00
+ todos, tried marginalia, inactive so far, doesnt work w/ smex
This commit is contained in:
3
TODO.md
3
TODO.md
@@ -0,0 +1,3 @@
|
||||
- replace smex with https://github.com/DarwinAwardWinner/amx
|
||||
- try to marry amx and marginalia somehow
|
||||
- try https://github.com/oantolin/embark
|
||||
|
||||
3
init.el
3
init.el
@@ -156,6 +156,9 @@
|
||||
(require 'init-recentfiles)
|
||||
(require 'init-ibuffer)
|
||||
(require 'init-printing)
|
||||
|
||||
;; doesn't work with smex, only after <tab><tab> and shows in another buffer
|
||||
;; (require 'init-marginalia)
|
||||
(require 'init-ui)
|
||||
|
||||
|
||||
|
||||
15
lisp/init-marginalia.el
Normal file
15
lisp/init-marginalia.el
Normal file
@@ -0,0 +1,15 @@
|
||||
;; 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
|
||||
Reference in New Issue
Block a user