vimPlugins.vectorcode-nvim: init at 0.6.10

This commit is contained in:
Sarah Clark
2025-06-02 17:26:15 -07:00
parent 3603bcb66c
commit 6b8541bf62
@@ -0,0 +1,36 @@
{
lib,
vimUtils,
vectorcode,
vimPlugins,
}:
let
inherit (vectorcode) src version;
in
vimUtils.buildVimPlugin {
inherit src version;
pname = "vectorcode.nvim";
# nixpkgs-update: no auto update
# This is built from the same source as vectorcode and will rebuild automatically
sourceRoot = "${src.name}/plugin";
dependencies = [
vimPlugins.plenary-nvim
];
buildInputs = [ vectorcode ];
postPatch = ''
cp -r ../lua .
'';
meta = {
description = "Index and navigate your code repository using vectorcode";
homepage = "https://github.com/Davidyz/VectorCode/blob/main/docs/neovim.md";
inherit (vectorcode.meta) changelog license;
maintainers = with lib.maintainers; [ sarahec ];
};
}