mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-24 22:28:36 +02:00
25 lines
443 B
Lua
25 lines
443 B
Lua
|
return {
|
||
|
{
|
||
|
'olimorris/codecompanion.nvim',
|
||
|
config = true,
|
||
|
dependencies = {
|
||
|
'nvim-lua/plenary.nvim',
|
||
|
'nvim-treesitter/nvim-treesitter',
|
||
|
},
|
||
|
opts = {
|
||
|
strategies = {
|
||
|
chat = {
|
||
|
adapter = 'openai',
|
||
|
},
|
||
|
inline = {
|
||
|
adapter = 'openai',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
'MeanderingProgrammer/render-markdown.nvim',
|
||
|
ft = { 'markdown', 'codecompanion' },
|
||
|
},
|
||
|
}
|