Files
dotfiles/nvim/lua/plugins/blink.lua
2025-11-24 11:50:05 +01:00

39 lines
741 B
Lua

return {
{
"saghen/blink.cmp",
dependencies = {
"Kaiser-Yang/blink-cmp-avante",
},
opts = {
completion = {
ghost_text = {
enabled = true,
},
list = {
selection = {
preselect = false,
auto_insert = true,
},
},
menu = {
auto_show = true,
},
},
file_selector = {
provider = "telescope",
provider_opts = {},
},
sources = {
default = { "avante", "lsp", "path", "buffer" },
providers = {
avante = {
module = "blink-cmp-avante",
name = "Avante",
opts = {},
},
},
},
},
},
}