This commit is contained in:
Hendra 2024-12-04 07:12:14 +07:00
parent 26468e4885
commit 075edd76ff
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,21 @@
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,
}