From 2ba00a0dcb8ff5006b28897cd10db35f58131db1 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Mon, 28 Jul 2025 18:02:35 -0400 Subject: [PATCH] vimPlugins.ethersync: init at 0.7.0 Signed-off-by: Ethan Carter Edwards --- pkgs/applications/editors/vim/plugins/overrides.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 2349fb07befb..78e4de437b10 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -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 ]; };