mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-24 14:18:36 +02:00
adiciona configuração básica de codecompanion
This commit is contained in:
parent
baa916df66
commit
d1ec8d91a0
2 changed files with 36 additions and 10 deletions
24
lua/custom/plugins/codecompanion.lua
Normal file
24
lua/custom/plugins/codecompanion.lua
Normal file
|
@ -0,0 +1,24 @@
|
|||
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' },
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue