nix-conf/home/config/nvim/lua/plugins/blink.lua
2025-01-26 22:58:54 +08:00

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",
},
},
},
},
},
}