aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-04-30 03:35:44 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-04-30 03:35:44 -0400
commitd792b7f99b3ddc31e060cfd7f2a1206733b494a3 (patch)
tree46562ad572c5637340d61b4a521016505ddad0db
parentMerge `minor-ui-fixes` branch to `stable` branch (diff)
downloadmmosmacs-d792b7f99b3ddc31e060cfd7f2a1206733b494a3.tar.gz
mmosmacs-d792b7f99b3ddc31e060cfd7f2a1206733b494a3.tar.bz2
mmosmacs-d792b7f99b3ddc31e060cfd7f2a1206733b494a3.zip
Use `vertico` for minibuffer completion
-rw-r--r--init.el26
1 files changed, 26 insertions, 0 deletions
diff --git a/init.el b/init.el
index f37ad3a..1f24b81 100644
--- a/init.el
+++ b/init.el
@@ -104,6 +104,32 @@
104 104
105 105
106;; --------------------------------------------------------------------- 106;; ---------------------------------------------------------------------
107;;; Completion
108;; -----------
109;; Completion refers to the suggestions you get when you type a few
110;; characters in almost any modern IDE. MMOSMacs attempts to have
111;; completion in as many places as possible.
112;; ---------------------------------------------------------------------
113
114;; ---------------------------------
115;; Minibuffer completion
116;; ---------------------
117;; Vertico provides minibuffer when
118;; typing commands and stuff like
119;; that.
120;; ---------------------------------
121
122(use-package vertico
123 :straight t
124 :config
125 (setq vertico-count 5
126 vertico-cycle nil)
127 (vertico-mode))
128
129
130
131
132;; ---------------------------------------------------------------------
107;;; Text Editor 133;;; Text Editor
108;; ------------ 134;; ------------
109;; These tweaks are meant to make the text editor more convenient. 135;; These tweaks are meant to make the text editor more convenient.