mirror of https://github.com/LazyVim/starter
10 lines
180 B
Lua
10 lines
180 B
Lua
|
return {
|
||
|
"Exafunction/codeium.vim",
|
||
|
|
||
|
config = function()
|
||
|
vim.keymap.set("i", "<Tab>", function()
|
||
|
return vim.fn["codeium#Accept"]()
|
||
|
end, { expr = true })
|
||
|
end,
|
||
|
}
|