From f23cfb0cbba0ced588a574f201ccc668693b0a8b Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 28 May 2025 23:50:06 +0200 Subject: [PATCH] add CopilotChat - seems advanced but simpler than others --- lua/plugins/copilot.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lua/plugins/copilot.lua diff --git a/lua/plugins/copilot.lua b/lua/plugins/copilot.lua new file mode 100644 index 0000000..b2f9489 --- /dev/null +++ b/lua/plugins/copilot.lua @@ -0,0 +1,14 @@ +return { + { + 'CopilotC-Nvim/CopilotChat.nvim', + dependencies = { + { 'github/copilot.vim' }, -- or zbirenbaum/copilot.lua + { 'nvim-lua/plenary.nvim', branch = 'master' }, -- for curl, log and async functions + }, + build = 'make tiktoken', -- Only on MacOS or Linux + opts = { + -- See Configuration section for options + }, + -- See Commands section for default commands if you want to lazy load on them + }, +}