removed tabs

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

View File

@ -46,10 +46,10 @@ return {
draw = {
padding = 1,
gap = 1,
-- treesitter = { "lsp" },
-- treesitter = { 'lsp' },
-- columns = {
-- { "kind_icon", width = { fill = true } },
-- { "label", "label_description", gap = 1, highlight = "BlinkCmpLabelDescription" },
-- { 'kind_icon', width = { fill = true } },
-- { 'label', 'label_description', gap = 1, highlight = 'BlinkCmpLabelDescription' },
-- },
},
},

View File

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