插件更新,添加AICodeium。

This commit is contained in:
2026-01-17 14:45:25 +08:00
parent 70320b12ae
commit a92e95f655
4 changed files with 37 additions and 16 deletions

17
lua/plugins/codeium.lua Normal file
View File

@@ -0,0 +1,17 @@
return {
"Exafunction/codeium.nvim",
cmd = "Codeium",
event = "InsertEnter",
build = ":Codeium Auth",
opts = {
enable_cmp_source = vim.g.ai_cmp,
virtual_text = {
enabled = not vim.g.ai_cmp,
key_bindings = {
accept = false, -- handled by nvim-cmp / blink.cmp
next = "<M-]>",
prev = "<M-[>",
},
},
},
}