diff --git a/lua/custom/configs/setUp.md b/lua/custom/configs/setUp.md index c5ff48b..86af30e 100644 --- a/lua/custom/configs/setUp.md +++ b/lua/custom/configs/setUp.md @@ -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/ diff --git a/lua/custom/plugins.lua b/lua/custom/plugins.lua index 593c148..8667728 100644 --- a/lua/custom/plugins.lua +++ b/lua/custom/plugins.lua @@ -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",