diff --git a/lazy-lock.json b/lazy-lock.json index 2f1a528..4ecc4e5 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -1,4 +1,5 @@ { + "CopilotChat.nvim": { "branch": "canary", "commit": "1a92bb6d69b35bbfe32a57f81dc4f254abb56352" }, "LazyVim": { "branch": "main", "commit": "12818a6cb499456f4903c5d8e68af43753ebc869" }, "LuaSnip": { "branch": "master", "commit": "b84eeb3641b08324287587b426ec974b888390d9" }, "SchemaStore.nvim": { "branch": "main", "commit": "d25cb49aa52f8bd459e1b8f3f4efd6c8af5eb7e5" }, diff --git a/lua/plugins/copilot.lua b/lua/plugins/copilot.lua index 8234922..8a8ad11 100644 --- a/lua/plugins/copilot.lua +++ b/lua/plugins/copilot.lua @@ -25,4 +25,18 @@ return { "zbirenbaum/copilot-cmp", enabled = false, }, + { + "CopilotC-Nvim/CopilotChat.nvim", + branch = "canary", + event = { "BufReadPost", "BufNewFile" }, + dependencies = { + { "zbirenbaum/copilot.lua" }, -- or github/copilot.vim + { "nvim-lua/plenary.nvim" }, -- for curl, log wrapper + }, + opts = { + debug = true, -- Enable debugging + -- See Configuration section for rest + }, + -- See Commands section for default commands if you want to lazy load on them + }, }