From 6e8e1e07f48e0bce0c4aa73fd91b59e4469e6c44 Mon Sep 17 00:00:00 2001 From: Martin Larsson Date: Thu, 8 May 2025 19:17:40 +0200 Subject: [PATCH] Remove vector code from neovim --- nvim/lua/plugs/codecompanion.lua | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/nvim/lua/plugs/codecompanion.lua b/nvim/lua/plugs/codecompanion.lua index ba20fc0..289b112 100644 --- a/nvim/lua/plugs/codecompanion.lua +++ b/nvim/lua/plugs/codecompanion.lua @@ -1,12 +1,6 @@ return { "olimorris/codecompanion.nvim", -- The KING of AI programming dependencies = { - { - "Davidyz/VectorCode", - version = "*", - build = "pipx upgrade vectorcode", - dependencies = { "nvim-lua/plenary.nvim" }, - }, "echasnovski/mini.diff", }, opts = { @@ -78,14 +72,6 @@ return { }, }, }, - tools = { - vectorcode = { - description = "Run VectorCode to retrieve the project context.", - callback = function() - return require("vectorcode.integrations").codecompanion.chat.make_tool() - end, - }, - }, }, inline = { adapter = "copilot" }, },