add codeium plugin change keymaps for completion picker to up/down/tab remove comments compact config
18 lines
267 B
Lua
18 lines
267 B
Lua
--
|
|
-- Codeium
|
|
-- https://github.com/Exafunction/codeium.nvim
|
|
--
|
|
|
|
return {
|
|
|
|
'Exafunction/codeium.nvim',
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
'hrsh7th/nvim-cmp',
|
|
},
|
|
event = 'BufEnter',
|
|
config = function()
|
|
require('codeium').setup {}
|
|
end,
|
|
}
|