Skip to content

Commit

Permalink
feat(codeium.nvim): yet another ai-powered code engine
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesChiuGit committed Feb 14, 2023
1 parent 034b978 commit db5e494
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions lua/modules/configs/completion/cmp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ return function()
{ name = "buffer" },
{ name = "latex_symbols" },
{ name = "copilot" },
-- { name = "codeium" },
-- { name = "cmp_tabnine" },
},
})
Expand Down
3 changes: 3 additions & 0 deletions lua/modules/configs/completion/codeium.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
return function()
require("codeium").setup({})
end
8 changes: 8 additions & 0 deletions lua/modules/plugins/completion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ completion["hrsh7th/nvim-cmp"] = {
{ "kdheepak/cmp-latex-symbols" },
{ "ray-x/cmp-treesitter" },
-- { "tzachar/cmp-tabnine", build = "./install.sh", config = require("completion.tabnine") },
-- {
-- "jcdickinson/codeium.nvim",
-- dependencies = {
-- "nvim-lua/plenary.nvim",
-- "MunifTanjim/nui.nvim",
-- },
-- config = require("completion.codeium"),
-- },
},
}
completion["zbirenbaum/copilot.lua"] = {
Expand Down

0 comments on commit db5e494

Please sign in to comment.