From 36885ac1353b41a13768a174568d8bbdcd8e1232 Mon Sep 17 00:00:00 2001 From: kj Date: Fri, 14 Apr 2023 15:43:55 -0400 Subject: [PATCH] Add smex for ordering on M-x. --- configs/init-minibuffer.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/init-minibuffer.el b/configs/init-minibuffer.el index 87b4c90..5f044cc 100644 --- a/configs/init-minibuffer.el +++ b/configs/init-minibuffer.el @@ -131,6 +131,11 @@ :config (setq all-the-icons-ivy-rich-color-icon t)) +;; Ordenar los comandos usados en M-x (por uso y luego alfabéticamente) +(use-package smex + :straight t + :defer t + :after (counsel)) (provide 'init-minibuffer) ;;; init-minibuffer.el ends here