diff --git a/lua/plugins/blink.lua b/lua/plugins/blink.lua index c00964d..a917844 100644 --- a/lua/plugins/blink.lua +++ b/lua/plugins/blink.lua @@ -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' }, -- }, }, }, diff --git a/lua/plugins/codecompanion.lua b/lua/plugins/codecompanion.lua index 599f26e..db82774 100644 --- a/lua/plugins/codecompanion.lua +++ b/lua/plugins/codecompanion.lua @@ -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, } -