feat(nvim): disable general auto-completion sources in codecompanion chat

This commit is contained in:
Michael Mandl 2025-06-18 09:00:45 +02:00
parent bf447bdce1
commit 32e96d011a
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2

View file

@ -14,7 +14,11 @@ require("blink-cmp").setup({
}, },
signature = { enabled = true }, signature = { enabled = true },
sources = { sources = {
default = { "copilot", "lsp", "buffer", "path", "cmdline", "codecompanion" }, default = { "copilot", "lsp", "buffer", "path", "cmdline" },
per_filetype = {
codecompanion = { "codecompanion" }
},
providers = { providers = {
copilot = { copilot = {