mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-08 03:55:04 +02:00
Update
This commit is contained in:
parent
1f78805dc5
commit
da73c6c333
3 changed files with 83 additions and 1 deletions
|
@ -3,9 +3,13 @@ return {
|
|||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
'j-hui/fidget.nvim',
|
||||
-- The following are optional:
|
||||
{ 'MeanderingProgrammer/render-markdown.nvim', ft = { 'markdown', 'codecompanion' } },
|
||||
},
|
||||
init = function()
|
||||
require('custom.plugins.codecompanion.fidget-spinner'):init()
|
||||
end,
|
||||
config = function()
|
||||
require('codecompanion').setup {
|
||||
adapters = {
|
||||
|
@ -14,6 +18,11 @@ return {
|
|||
api_key = 'CODECOMP_ANTHROPIC_API_KEY',
|
||||
},
|
||||
}),
|
||||
deepseek = require('codecompanion.adapters').extend('deepseek', {
|
||||
env = {
|
||||
api_key = 'CODECOMP_DEEPSEEK_API_KEY',
|
||||
},
|
||||
}),
|
||||
},
|
||||
strategies = {
|
||||
chat = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue