✨ feat(nvim): add new chat with codeium keymap
This commit is contained in:
parent
c2156cee5b
commit
21e3937930
1 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,10 @@ return {
|
||||||
return vim.fn["codeium#Accept"]()
|
return vim.fn["codeium#Accept"]()
|
||||||
end, opts)
|
end, opts)
|
||||||
|
|
||||||
|
vim.keymap.set("n", "<leader>ch", function()
|
||||||
|
return vim.fn["codeium#Chat"]()
|
||||||
|
end, { desc = "Chat with IA (Codeium)" })
|
||||||
|
|
||||||
vim.keymap.set("i", "<M-]>", function()
|
vim.keymap.set("i", "<M-]>", function()
|
||||||
return vim.fn["codeium#CycleCompletions"](1)
|
return vim.fn["codeium#CycleCompletions"](1)
|
||||||
end, opts)
|
end, opts)
|
||||||
|
|
Loading…
Add table
Reference in a new issue