26 lines
500 B
Lua
26 lines
500 B
Lua
return {
|
|
{
|
|
"saghen/blink.cmp",
|
|
---@module "blink.cmp"
|
|
---@type blink.cmp.Config
|
|
opts = {
|
|
snippets = {
|
|
expand = function(snippet, _)
|
|
return LazyVim.cmp.expand(snippet)
|
|
end,
|
|
},
|
|
completion = {
|
|
menu = {
|
|
border = "rounded",
|
|
},
|
|
documentation = {
|
|
auto_show = true,
|
|
auto_show_delay_ms = 200,
|
|
window = {
|
|
border = "rounded",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|