summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-07-10 18:55:46 +0100
committerMatthew Lemon <y@yulqen.org>2024-07-10 18:55:46 +0100
commit96d60ccf36ab3ef80cd5e65c95fabf20340fd28d (patch)
tree000c252097b9b368194aefd31f99677019171308
parenta47edf51f64bbed3d3c5011e824e9aba3abc8527 (diff)
Reduce size of vertico window and stop it resizing
-rw-r--r--init.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/init.el b/init.el
index 17aed47..12cd55b 100644
--- a/init.el
+++ b/init.el
@@ -521,11 +521,12 @@ Restart works only on graphic display."
;;Different scroll margin
(setq vertico-scroll-margin 0)
- ;;Show more candidates
- (setq vertico-count 20)
+ ;;Show more candidates - we don't need many
+ (setq vertico-count 10)
- ;;Grow and shrink the Vertico minibuffer
- (setq vertico-resize t)
+ ;;Grow and shrink the Vertico minibuffer - set to nil because it
+ ;; jumping up and down is nippy
+ (setq vertico-resize nil)
;;Optionally enable cycling for `vertico-next' and `vertico-previous'.
(setq vertico-cycle t))