From d792b7f99b3ddc31e060cfd7f2a1206733b494a3 Mon Sep 17 00:00:00 2001 From: Mountain Man <43313373+MountainMan1312@users.noreply.github.com> Date: Sun, 30 Apr 2023 03:35:44 -0400 Subject: Use `vertico` for minibuffer completion --- init.el | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'init.el') diff --git a/init.el b/init.el index f37ad3a..1f24b81 100644 --- a/init.el +++ b/init.el @@ -103,6 +103,32 @@ +;; --------------------------------------------------------------------- +;;; Completion +;; ----------- +;; Completion refers to the suggestions you get when you type a few +;; characters in almost any modern IDE. MMOSMacs attempts to have +;; completion in as many places as possible. +;; --------------------------------------------------------------------- + +;; --------------------------------- +;; Minibuffer completion +;; --------------------- +;; Vertico provides minibuffer when +;; typing commands and stuff like +;; that. +;; --------------------------------- + +(use-package vertico + :straight t + :config + (setq vertico-count 5 + vertico-cycle nil) + (vertico-mode)) + + + + ;; --------------------------------------------------------------------- ;;; Text Editor ;; ------------ -- cgit v1.2.3