mirror of
https://github.com/bgrolleman/dotfiles.git
synced 2025-12-06 05:45:24 +01:00
39 lines
818 B
Lua
39 lines
818 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,
|
|
},
|
|
},
|
|
sources = {
|
|
-- Add 'avante' to the list
|
|
-- NOTE Disbable adding this until I can properly figure it out
|
|
-- default = { "avante", "lsp", "path", "buffer" },
|
|
providers = {
|
|
avante = {
|
|
module = "blink-cmp-avante",
|
|
name = "Avante",
|
|
opts = {
|
|
-- options for blink-cmp-avante
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|