From ffce089a9f1268ff73c7de7c4f45e1a366dc4d34 Mon Sep 17 00:00:00 2001 From: Zhou Fang Date: Sat, 16 Nov 2024 15:32:07 +0900 Subject: [PATCH] feat(blink): auto-enable catppuccin integration (#4799) ## Description Auto enable `blink_cmp` integration in catppuccin if the theme plugin is loaded. ## Related Issue(s) ## Screenshots **Before** ![before](https://github.com/user-attachments/assets/918d5110-fd05-4468-9259-bf7164569521) **After** ![after](https://github.com/user-attachments/assets/0d02d0c6-2b31-41cd-8b26-fbf74a86e498) ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines. --- lua/lazyvim/plugins/extras/coding/blink.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lua/lazyvim/plugins/extras/coding/blink.lua b/lua/lazyvim/plugins/extras/coding/blink.lua index 9542db8d..bb65afc3 100644 --- a/lua/lazyvim/plugins/extras/coding/blink.lua +++ b/lua/lazyvim/plugins/extras/coding/blink.lua @@ -121,4 +121,12 @@ return { }, }, }, + -- catppuccin support + { + "catppuccin", + optional = true, + opts = { + integrations = { blink_cmp = true }, + }, + }, }