mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-07 19:44:58 +02:00
22 lines
489 B
Lua
22 lines
489 B
Lua
|
return {
|
||
|
'olimorris/codecompanion.nvim',
|
||
|
dependencies = {
|
||
|
'nvim-lua/plenary.nvim',
|
||
|
'nvim-treesitter/nvim-treesitter',
|
||
|
-- The following are optional:
|
||
|
{ 'MeanderingProgrammer/render-markdown.nvim', ft = { 'markdown', 'codecompanion' } },
|
||
|
},
|
||
|
config = function()
|
||
|
require('codecompanion').setup {
|
||
|
strategies = {
|
||
|
chat = {
|
||
|
adapter = 'anthropic',
|
||
|
},
|
||
|
inline = {
|
||
|
adapter = 'anthropic',
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
end,
|
||
|
}
|