mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-24 14:18:36 +02:00
15 lines
325 B
Lua
15 lines
325 B
Lua
return {
|
|
'Exafunction/codeium.nvim',
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
'hrsh7th/nvim-cmp',
|
|
},
|
|
config = function()
|
|
require('codeium').setup {
|
|
enable_cmp_source = false, -- disabled because I only want to use virtual text
|
|
virtual_text = {
|
|
enabled = true,
|
|
},
|
|
}
|
|
end,
|
|
}
|