vimPlugins.ethersync: init at 0.7.0

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
Ethan Carter Edwards 2025-07-28 18:02:35 -04:00
parent 04fb07600c
commit 2ba00a0dcb
No known key found for this signature in database
GPG Key ID: D83DC5377393C7E6

View File

@ -133,6 +133,8 @@
# search-and-replace.nvim dependencies
fd,
sad,
# ethersync vim plugin
ethersync,
}:
self: super:
let
@ -1127,6 +1129,17 @@ in
'';
};
ethersync = buildVimPlugin rec {
inherit (ethersync)
pname
version
src
meta
;
sourceRoot = "${src.name}/nvim-plugin";
};
executor-nvim = super.executor-nvim.overrideAttrs {
dependencies = [ self.nui-nvim ];
};