feat(codeiumAI): Added Codeium plugin for AI support

pull/2788/head
n-s-s-p-k 6 months ago
parent 3a226db213
commit 521c11fa99

@ -4,3 +4,4 @@ The setup of the nvim
* `set flodmethod=indent` from manual
* https://github.com/NvChad/nvcommunity/tree/main/lua/nvcommunity - has the multiple configurations for AI, formatter, linter etc
* Also has many other plugins in it
https://www.reddit.com/r/neovim/comments/12aek0y/ai_plugin_overview/

@ -102,6 +102,25 @@ local plugins = {
vim.cmd [[silent! GoInstallDeps]]
end,
},
-- codeium the AI
{
"hrsh7th/nvim-cmp",
config = function(_, opts)
table.insert(opts.sources, { name = "codeium" })
require("cmp").setup(opts)
end,
dependencies = {
{
"jcdickinson/codeium.nvim",
config = function()
require("codeium").setup({})
end,
},
},
},
-- To make a plugin not be loaded
-- {
-- "NvChad/nvim-colorizer.lua",

Loading…
Cancel
Save