From 926a27e7c47d8c6ef047c8969f44adeddc223c03 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Mon, 4 Sep 2023 18:27:24 +0000 Subject: [PATCH] something --- config/emacs/init.el | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/config/emacs/init.el b/config/emacs/init.el index 96dd7286..f39c46bc 100644 --- a/config/emacs/init.el +++ b/config/emacs/init.el @@ -75,6 +75,22 @@ :demand :config (ivy-mode 1)) +;; better ivy autocompletion +(use-package ivy-rich + :init + (ivy-rich-mode 1)) + +;; counsel M+X +(use-package counsel + :bind (("M-x" . counsel-M-x) + ("C-x b" . counsel-ibuffer) + ("C-x C-f" . counsel-find-file) + :map minibuffer-local-map + ("C-r" . 'counsel-minibuffer-history)) + :config + (setq ivy-inital-inputs-alist nil)) + + ;; better statusbar (use-package doom-modeline :ensure t