diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index d81a8a5..edb53e7 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -1,4 +1,5 @@ { + "CopilotChat.nvim": { "branch": "main", "commit": "75653259442a8eb895abfc70d7064e07aeb7134c" }, "LuaSnip": { "branch": "master", "commit": "03c8e67eb7293c404845b3982db895d59c0d1538" }, "catppuccin": { "branch": "main", "commit": "5b5e3aef9ad7af84f463d17b5479f06b87d5c429" }, "cmp-buffer": { "branch": "main", "commit": "b74fab3656eea9de20a9b8116afa3cfc4ec09657" }, diff --git a/nvim/lua/plugins/copilot.lua b/nvim/lua/plugins/copilot.lua index be1fcea..70661f9 100644 --- a/nvim/lua/plugins/copilot.lua +++ b/nvim/lua/plugins/copilot.lua @@ -1,4 +1,11 @@ return { - "github/copilot.vim", - event = "InsertEnter" + { + "github/copilot.vim", + event = "InsertEnter" + }, + { + "CopilotC-Nvim/CopilotChat.nvim", + build = "make tiktoken", -- Only on MacOS or Linux + opts = {}, + } }