15 lines
295 B
Lua
15 lines
295 B
Lua
vim.pack.add({ {
|
|
src = "https://www.github.com/olimorris/codecompanion.nvim",
|
|
version = vim.version.range("^19.0.0")
|
|
} })
|
|
|
|
-- Somewhere in your config
|
|
require("codecompanion").setup({
|
|
interactions = {
|
|
chat = {
|
|
adapter = "ollama",
|
|
model = "qwen2.5-coder:7b "
|
|
},
|
|
},
|
|
})
|