From d4e620e28bcb65a3867f8646199f73fd9fde2584 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Sat, 4 Oct 2025 19:57:29 -0400 Subject: [PATCH] feat: add CopilotChat.nvim Actually, I've had this for a while but chose not to commit. Still unsure if I'm going to keep it as I don't use it at all --- .config/nvim/lua/plugins/copilot-chat.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .config/nvim/lua/plugins/copilot-chat.lua diff --git a/.config/nvim/lua/plugins/copilot-chat.lua b/.config/nvim/lua/plugins/copilot-chat.lua new file mode 100644 index 0000000..b3ba9a7 --- /dev/null +++ b/.config/nvim/lua/plugins/copilot-chat.lua @@ -0,0 +1,15 @@ +return { + { + "CopilotC-Nvim/CopilotChat.nvim", + dependencies = { + { "zbirenbaum/copilot.lua" }, + { "nvim-lua/plenary.nvim", branch = "master" }, -- for curl, log and async functions + }, + build = "make tiktoken", -- Only on MacOS or Linux + cmd = "CopilotChat", + opts = { + -- See Configuration section for options + }, + -- See Commands section for default commands if you want to lazy load on them + }, +} \ No newline at end of file