diff --git a/lazy-lock.json b/lazy-lock.json index 4f7b771..0366fb4 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -1,5 +1,4 @@ { - "CopilotChat.nvim": { "branch": "canary", "commit": "451d365928a994cda3505a84905303f790e28df8" }, "LazyVim": { "branch": "main", "commit": "0329bc0e508eb48f7cee7fe57975c364584f8738" }, "SchemaStore.nvim": { "branch": "main", "commit": "54994d58c2bc9260908a6c59e8698e9629098389" }, "blink-cmp-avante": { "branch": "master", "commit": "4f494c6e124acbe31a8f5d58effa0c14aa38a6d5" }, diff --git a/lazyvim.json b/lazyvim.json index 9ddc228..e9e1884 100644 --- a/lazyvim.json +++ b/lazyvim.json @@ -1,7 +1,6 @@ { "extras": [ "lazyvim.plugins.extras.ai.copilot", - "lazyvim.plugins.extras.ai.copilot-chat", "lazyvim.plugins.extras.ai.sidekick", "lazyvim.plugins.extras.coding.mini-surround", "lazyvim.plugins.extras.coding.neogen", diff --git a/lua/plugins/copilot-chat.lua b/lua/plugins/copilot-chat.lua deleted file mode 100644 index da2d739..0000000 --- a/lua/plugins/copilot-chat.lua +++ /dev/null @@ -1,17 +0,0 @@ -return { - "CopilotC-Nvim/CopilotChat.nvim", - branch = "canary", - keys = { - -- disable this keymap since it conflicts with avante.nvim - { "aa", false, mode = { "n", "v" } }, - -- replace the keymap with a new one - { - "aA", - function() - return require("CopilotChat").toggle() - end, - desc = "Toggle (CopilotChat)", - mode = { "n", "v" }, - }, - }, -}