removed tabs

This commit is contained in:
2024-12-17 13:55:24 +01:00
parent eb27bfb343
commit dc4e43aec4
2 changed files with 30 additions and 31 deletions

View File

@ -1,30 +1,29 @@
return {
"olimorris/codecompanion.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
},
branch = "main",
config = function()
require("codecompanion").setup({
strategies = {
chat = {
adapter = "copilot",
},
inline = {
adapter = "copilot",
},
},
-- adapters = {
-- anthropic = function()
-- return require("codecompanion.adapters").extend("copilot", {
-- env = {
-- api_key = "ghu_8hbMItSdtNIrzMI4svd94dem3ZCsk23VG446",
-- },
-- })
-- end,
-- },
})
end,
'olimorris/codecompanion.nvim',
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-treesitter/nvim-treesitter',
},
branch = 'main',
config = function()
require('codecompanion').setup({
strategies = {
chat = {
adapter = 'copilot',
},
inline = {
adapter = 'copilot',
},
},
-- adapters = {
-- anthropic = function()
-- return require('codecompanion.adapters').extend('copilot', {
-- env = {
-- api_key = 'ghu_8hbMItSdtNIrzMI4svd94dem3ZCsk23VG446',
-- },
-- })
-- end,
-- },
})
end,
}