Files
nvim/lua/plugins/codecompanion.lua

28 lines
696 B
Lua
Raw Normal View History

2025-04-14 15:20:54 +01:00
require('helpers').edit_cf('pa', '/lua/plugins/codecompanion.lua')
2025-04-14 11:38:42 +01:00
2025-04-13 22:53:08 +01:00
return {
'olimorris/codecompanion.nvim',
2025-04-14 15:20:54 +01:00
opts = {
adapters = {
copilot = function()
return require('codecompanion.adapters').extend('copilot', {
schema = {
model = {
default = 'claude-3.7-sonnet',
},
},
})
end,
},
display = {
chat = {
show_settings = true,
},
},
},
2025-04-13 22:53:08 +01:00
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-treesitter/nvim-treesitter',
},
}