mirror of
https://github.com/Hydroxycarbamide/astrovim_user.git
synced 2025-05-04 12:19:08 -04:00
35 lines
746 B
Lua
35 lines
746 B
Lua
return {
|
|
{
|
|
"Exafunction/codeium.nvim",
|
|
enabled = true,
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
},
|
|
event = "BufEnter",
|
|
config = function() require("codeium").setup {} end,
|
|
},
|
|
{
|
|
"Saghen/blink.cmp",
|
|
optional = true,
|
|
dependencies = {
|
|
"codeium.nvim",
|
|
},
|
|
specs = {
|
|
-- install the blink, nvim-cmp compatibility layer
|
|
{ "Saghen/blink.compat", version = "*", lazy = true, opts = {} },
|
|
},
|
|
opts = {
|
|
sources = {
|
|
default = { "codeium" },
|
|
providers = {
|
|
codeium = {
|
|
name = "codeium",
|
|
module = "blink.compat.source",
|
|
score_offset = 100,
|
|
async = true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|