Files
dotfiles/vim/.vim/lua/plugins/codeium.lua
Christian Nieves f054ccd98c dap arghhh cmp
2023-11-26 12:57:56 -06:00

17 lines
308 B
Lua

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