Adding codecompanion plugin

This commit is contained in:
Ian Roddis
2024-12-31 08:48:45 -04:00
parent 2ae515b475
commit 3562869b90
+20
View File
@@ -324,6 +324,15 @@ require('lazy').setup({
}, },
}, },
-- AI coding
{
"olimorris/codecompanion.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
},
config = true
}
-- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart -- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
-- These are some example plugins that I've included in the kickstart repository. -- These are some example plugins that I've included in the kickstart repository.
-- Uncomment any of the lines below to enable them. -- Uncomment any of the lines below to enable them.
@@ -905,6 +914,17 @@ autocmd("BufWritePost", {
command = ":FormatWrite", command = ":FormatWrite",
}) })
require("codecompanion").setup({
strategies = {
chat = {
adapter = "anthropic",
},
inline = {
adapter = "anthropic",
},
},
})
-- The line beneath this is called `modeline`. See `:help modeline` -- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et -- vim: ts=2 sts=2 sw=2 et