Files
dotfiles/vim/.vim/lua/plugins/codeium.lua
Christian Nieves 0ef4e8a5bf umm
2023-12-05 00:03:45 -06:00

18 lines
363 B
Lua

local use_google = require("utils").use_google
return {
{
"Exafunction/codeium.nvim",
commit = "b1ff0d6c993e3d87a4362d2ccd6c660f7444599f",
event = "VeryLazy",
-- event = "InsertEnter",
cond = not use_google(),
dependencies = {
"nvim-lua/plenary.nvim",
"hrsh7th/nvim-cmp",
},
config = function()
require("codeium").setup({})
end,
},
}