diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-30 03:35:44 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-30 03:35:44 -0400 |
commit | d792b7f99b3ddc31e060cfd7f2a1206733b494a3 (patch) | |
tree | 46562ad572c5637340d61b4a521016505ddad0db | |
parent | Merge `minor-ui-fixes` branch to `stable` branch (diff) | |
download | mmosmacs-d792b7f99b3ddc31e060cfd7f2a1206733b494a3.tar.gz mmosmacs-d792b7f99b3ddc31e060cfd7f2a1206733b494a3.tar.bz2 mmosmacs-d792b7f99b3ddc31e060cfd7f2a1206733b494a3.zip |
Use `vertico` for minibuffer completion
-rw-r--r-- | init.el | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -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. |