summary refs log tree commit diff
diff options
context:
space:
mode:
authornoa@gaiwan.org2024-06-18 20:27:47 +0000
committernoa@gaiwan.org2024-06-18 20:27:47 +0000
commite30e54bdbfb54796e1cb9703098f90fe16d28991 (patch)
tree925c8ac574e3e92838c2938b138d57d455fd505c
parent08059ac91315120b755358f3a9e6a937dbbc5244 (diff)
Don't show a dividing line to separate vertico groups
-rw-r--r--emacs/init.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 71e8aef..9f05288 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -35,6 +35,9 @@
 ;; We want vertico to take up a maximum of 12 lines on the display.  My screen is quite small, so that's fine, but if i had a bigger screen, i might want to look into setting a percentage or increasing this.
 (setopt vertico-count 12)
 
+(setopt vertico-group-format #("%s " 0 3 (face vertico-group-title)))
+
+
 ;; We also want to be able to jump to the bottom of the list by moving up from the top of the list, and the opposite.  I've rarely made use of this functionality and i don't know if it's actually a best practice from an interaction perspective, but i'm going to keep it on until it causes an issue for me.
 (setopt vertico-cycle t)