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 = { draw = {
padding = 1, padding = 1,
gap = 1, gap = 1,
-- treesitter = { "lsp" }, -- treesitter = { 'lsp' },
-- columns = { -- columns = {
-- { "kind_icon", width = { fill = true } }, -- { 'kind_icon', width = { fill = true } },
-- { "label", "label_description", gap = 1, highlight = "BlinkCmpLabelDescription" }, -- { 'label', 'label_description', gap = 1, highlight = 'BlinkCmpLabelDescription' },
-- }, -- },
}, },
}, },

View File

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