vimPlugins.ethersync: move to non-generated

Looks like it was missed in `overrides.nix` when it should be in
non-generated.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>

+14 -13
+14
pkgs/applications/editors/vim/plugins/non-generated/ethersync/default.nix
··· 1 + { 2 + vimUtils, 3 + ethersync, 4 + }: 5 + vimUtils.buildVimPlugin rec { 6 + inherit (ethersync) 7 + pname 8 + version 9 + src 10 + meta 11 + ; 12 + 13 + sourceRoot = "${src.name}/nvim-plugin"; 14 + }
-13
pkgs/applications/editors/vim/plugins/overrides.nix
··· 133 133 # search-and-replace.nvim dependencies 134 134 fd, 135 135 sad, 136 - # ethersync vim plugin 137 - ethersync, 138 136 }: 139 137 self: super: 140 138 let ··· 1157 1155 fixupPhase = '' 1158 1156 patchShebangs $(find $out/bin/ -type f -not -name credo-language-server) 1159 1157 ''; 1160 - }; 1161 - 1162 - ethersync = buildVimPlugin rec { 1163 - inherit (ethersync) 1164 - pname 1165 - version 1166 - src 1167 - meta 1168 - ; 1169 - 1170 - sourceRoot = "${src.name}/nvim-plugin"; 1171 1158 }; 1172 1159 1173 1160 executor-nvim = super.executor-nvim.overrideAttrs {