feat(nvim): disable general auto-completion sources in codecompanion chat
This commit is contained in:
parent
bf447bdce1
commit
32e96d011a
1 changed files with 5 additions and 1 deletions
|
@ -14,7 +14,11 @@ require("blink-cmp").setup({
|
|||
},
|
||||
signature = { enabled = true },
|
||||
sources = {
|
||||
default = { "copilot", "lsp", "buffer", "path", "cmdline", "codecompanion" },
|
||||
default = { "copilot", "lsp", "buffer", "path", "cmdline" },
|
||||
|
||||
per_filetype = {
|
||||
codecompanion = { "codecompanion" }
|
||||
},
|
||||
|
||||
providers = {
|
||||
copilot = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue