feat: mirgated to neovims internal plugin manager

This commit is contained in:
2026-07-21 13:15:33 +02:00
parent 5f83f33abc
commit 706ed1e2e7
7 changed files with 115 additions and 68 deletions

View File

@@ -0,0 +1,14 @@
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 "
},
},
})