mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-08 03:55:04 +02:00
updates
This commit is contained in:
parent
26468e4885
commit
075edd76ff
2 changed files with 22 additions and 0 deletions
21
lua/custom/plugins/codecompanion.lua
Normal file
21
lua/custom/plugins/codecompanion.lua
Normal 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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue