From 0026776f369582305d2e24d1199f4e546e9db357 Mon Sep 17 00:00:00 2001 From: Michal Date: Fri, 5 Sep 2025 08:54:15 +0200 Subject: [PATCH] Add Copilot Chat plugin --- lua/custom/plugins/copilot-chat.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/custom/plugins/copilot-chat.lua diff --git a/lua/custom/plugins/copilot-chat.lua b/lua/custom/plugins/copilot-chat.lua new file mode 100644 index 00000000..bf7a553d --- /dev/null +++ b/lua/custom/plugins/copilot-chat.lua @@ -0,0 +1,12 @@ +return { -- https://github.com/CopilotC-Nvim/CopilotChat.nvim + { + 'CopilotC-Nvim/CopilotChat.nvim', + dependencies = { + { 'nvim-lua/plenary.nvim', branch = 'master' }, + }, + build = 'make tiktoken', + opts = { + -- See Configuration section for options + }, + }, +}