From 58a546ad314c66ddad888132eea6169d91c11931 Mon Sep 17 00:00:00 2001 From: Osvaldo Date: Fri, 13 Dec 2024 10:32:24 -0600 Subject: [PATCH] fix: add supermaven to the completion provider list I observed that Supermaven suggestions were not appearing because of a missing configuration setting. --- lua/lazyvim/plugins/extras/ai/supermaven.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/lazyvim/plugins/extras/ai/supermaven.lua b/lua/lazyvim/plugins/extras/ai/supermaven.lua index 35a955ca..b128b9cd 100644 --- a/lua/lazyvim/plugins/extras/ai/supermaven.lua +++ b/lua/lazyvim/plugins/extras/ai/supermaven.lua @@ -49,6 +49,9 @@ return { dependencies = { "supermaven-nvim", "saghen/blink.compat" }, opts = { sources = { + completion = { + enabled_providers = { "lsp", "path", "snippets", "buffer", "supermaven" }, + }, compat = { "supermaven" }, providers = { supermaven = { kind = "Supermaven" } }, },