adding support for codecompanion!
This commit is contained in:
23
lua/plugins/codecompanion.lua
Normal file
23
lua/plugins/codecompanion.lua
Normal file
@@ -0,0 +1,23 @@
|
||||
return {
|
||||
"olimorris/codecompanion.nvim",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
},
|
||||
opts = {
|
||||
interactions = {
|
||||
chat = {
|
||||
adapter = "gemini",
|
||||
model = "gemini-2.5-flash",
|
||||
},
|
||||
-- inline = { adapter = "gemini" },
|
||||
-- cmd = { adapter = "gemini" },
|
||||
},
|
||||
background = {
|
||||
adapter = {
|
||||
name = "ollama",
|
||||
model = "qwen-7b-instruct"
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user