aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-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.