plugins/windsurf-vim: rename codeium-vim

Rename plugin, use new packpathname, and update deprecations to point
from old name to new name.
This commit is contained in:
Austin Horstman 2025-04-19 12:51:49 -05:00 committed by nix-infra-bot
parent 1971ec5b2b
commit 7f4efe62e0
3 changed files with 41 additions and 17 deletions

View file

@ -0,0 +1,34 @@
{
lib,
...
}:
{
imports =
# TODO: introduced 2024-02-19: remove 2024-03-19
lib.nixvim.deprecation.mkSettingsRenamedOptionModules [ "plugins" "codeium-vim" ]
[ "plugins" "windsurf-vim" "settings" ]
[
"bin"
"filetypes"
"manual"
"noMapTab"
"idleDelay"
"render"
"tabFallback"
"disableBindings"
]
# TODO: introduced 2025-04-19
++
lib.nixvim.deprecation.mkSettingsRenamedOptionModules [ "plugins" "codeium-vim" ]
[ "plugins" "windsurf-vim" ]
[
"enable"
"package"
"settings"
"keymaps"
{
old = "extraConfig";
new = "settings";
}
];
}