Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions lua/astrocommunity/editing-support/copilotchat-nvim/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
Chat with GitHub Copilot in Neovim

**Repository:** <https://github.com/CopilotC-Nvim/CopilotChat.nvim>

Note: This will need to have Copilot setup, this uses the same auth as `zbirenbaum/copilot.lua` with `:Copilot setup`
7 changes: 2 additions & 5 deletions lua/astrocommunity/editing-support/copilotchat-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---@type LazySpec
return {
"CopilotC-Nvim/CopilotChat.nvim",
version = "^3",
version = "^4",
cmd = {
"CopilotChat",
"CopilotChatOpen",
Expand All @@ -11,19 +11,16 @@ return {
"CopilotChatReset",
"CopilotChatSave",
"CopilotChatLoad",
"CopilotChatDebugInfo",
"CopilotChatModels",
"CopilotChatAgents",
"CopilotChatExplain",
"CopilotChatReview",
"CopilotChatFix",
"CopilotChatOptimize",
"CopilotChatDocs",
"CopilotChatFixTests",
"CopilotChatTests",
"CopilotChatCommit",
},
dependencies = {
{ "zbirenbaum/copilot.lua" },
{ "nvim-lua/plenary.nvim" },
{
"AstroNvim/astrocore",
Expand Down
14 changes: 14 additions & 0 deletions lua/astrocommunity/editing-support/mcphub-nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,18 @@ return {
},
},
},
{
"CopilotC-Nvim/CopilotChat.nvim",
optional = true,
opts = {
extensions = {
copilotchat = {
enabled = true,
convert_tools_to_functions = true,
convert_resources_to_functions = true,
add_mcp_prefix = false,
},
},
},
Comment thread
azdanov marked this conversation as resolved.
},
}