From 539926b2897b31566547edda1f25b39866c7361b Mon Sep 17 00:00:00 2001 From: Jost Alemann Date: Fri, 31 Oct 2025 10:46:25 +0100 Subject: [PATCH] plugins/ethersync: rename to teamtype --- plugins/by-name/ethersync/default.nix | 2 +- plugins/deprecation.nix | 2 ++ tests/test-sources/plugins/by-name/ethersync/default.nix | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/by-name/ethersync/default.nix b/plugins/by-name/ethersync/default.nix index ac99eae0..80d265c9 100644 --- a/plugins/by-name/ethersync/default.nix +++ b/plugins/by-name/ethersync/default.nix @@ -1,6 +1,6 @@ { lib, ... }: lib.nixvim.plugins.mkNeovimPlugin { - name = "ethersync"; + name = "teamtype"; maintainers = [ lib.maintainers.GaetanLepage ]; diff --git a/plugins/deprecation.nix b/plugins/deprecation.nix index bd58f2ff..6963ffcb 100644 --- a/plugins/deprecation.nix +++ b/plugins/deprecation.nix @@ -41,6 +41,8 @@ let surround = "vim-surround"; # Added 2025-10-06 presence-nvim = "presence"; + # Added 2025-10-31 + ethersync = "teamtype"; }; # Added 2024-09-21; remove after 24.11 # `iconsPackage` options were briefly available in the following plugins for ~3 weeks diff --git a/tests/test-sources/plugins/by-name/ethersync/default.nix b/tests/test-sources/plugins/by-name/ethersync/default.nix index c508b8bd..1e570edf 100644 --- a/tests/test-sources/plugins/by-name/ethersync/default.nix +++ b/tests/test-sources/plugins/by-name/ethersync/default.nix @@ -1,5 +1,5 @@ { empty = { - plugins.ethersync.enable = true; + plugins.teamtype.enable = true; }; }