aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLibravatar sommerfeld <[email protected]>2026-04-17 10:53:17 +0100
committerLibravatar sommerfeld <[email protected]>2026-04-17 10:53:17 +0100
commit1d4ca49f91fdeb6e74086d4b50fa17580d0b9e74 (patch)
treefa1ce88f0d7ae7195e9fcb10ec5a9289aa3eece4
parentf00b971b9d9d36393d15d5e9cf984d7e0ba07be5 (diff)
downloaddotfiles-1d4ca49f91fdeb6e74086d4b50fa17580d0b9e74.tar.gz
dotfiles-1d4ca49f91fdeb6e74086d4b50fa17580d0b9e74.tar.bz2
dotfiles-1d4ca49f91fdeb6e74086d4b50fa17580d0b9e74.zip
chore: remove codecompanion.nvim and mcphub.nvim
Redundant with copilot.lua (inline completions via NES) and Copilot CLI (chat/agentic workflows outside the editor).
-rw-r--r--home/.config/nvim/lua/plugins/ai.lua53
1 files changed, 0 insertions, 53 deletions
diff --git a/home/.config/nvim/lua/plugins/ai.lua b/home/.config/nvim/lua/plugins/ai.lua
index 3b5ec0c..5936339 100644
--- a/home/.config/nvim/lua/plugins/ai.lua
+++ b/home/.config/nvim/lua/plugins/ai.lua
@@ -41,57 +41,4 @@ return {
},
},
},
- {
- "olimorris/codecompanion.nvim",
- dependencies = {
- "nvim-lua/plenary.nvim",
- "ravitemer/mcphub.nvim",
- },
- keys = {
- {
- "<leader>aa",
- "<cmd>CodeCompanionActions<cr>",
- mode = { "n", "v" },
- noremap = true,
- silent = true,
- desc = "[A]I [A]ctions",
- },
- {
- "<leader>ta",
- "<cmd>CodeCompanionChat Toggle<cr>",
- mode = { "n", "v" },
- noremap = true,
- silent = true,
- desc = "[T]oggle [A]I chat",
- },
- {
- "<leader>ac",
- "<cmd>CodeCompanionChat Add<cr>",
- mode = "v",
- noremap = true,
- silent = true,
- desc = "[A]I [C]hat add",
- },
- },
- opts = {
- strategies = {
- chat = {
- adapter = "copilot",
- },
- inline = {
- adapter = "copilot",
- },
- },
- extensions = {
- mcphub = {
- callback = "mcphub.extensions.codecompanion",
- opts = {
- make_vars = true,
- make_slash_commands = true,
- show_result_in_chat = true,
- },
- },
- },
- },
- },
}