mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-09 03:03:50 +00:00
11 lines
260 B
Lua
11 lines
260 B
Lua
|
-- Set keymap to open chat in browser
|
||
|
vim.keymap.set('n', '<leader>cc', ':execute codeium#Chat()<Enter>', { desc = '[C]odeium [C]hat' })
|
||
|
|
||
|
return {
|
||
|
-- Free Github Copilot alternative
|
||
|
{
|
||
|
'Exafunction/codeium.vim',
|
||
|
event = 'BufEnter',
|
||
|
},
|
||
|
}
|