mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-22 04:21:08 +00:00
Fix #5666 with the answer given in the discussion. - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines. Co-authored-by: svirschevskiy <alexey.svirshchevskiy@sitoo.com>
This commit is contained in:
parent
ae3aaf2dd3
commit
3aa2916569
1 changed files with 20 additions and 0 deletions
|
|
@ -85,4 +85,24 @@ return {
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- Blink integration
|
||||||
|
{
|
||||||
|
"saghen/blink.cmp",
|
||||||
|
optional = true,
|
||||||
|
---@module 'blink.cmp'
|
||||||
|
---@type blink.cmp.Config
|
||||||
|
opts = {
|
||||||
|
sources = {
|
||||||
|
providers = {
|
||||||
|
path = {
|
||||||
|
-- Path sources triggered by "/" interfere with CopilotChat commands
|
||||||
|
enabled = function()
|
||||||
|
return vim.bo.filetype ~= "copilot-chat"
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue