nix-community.nixvim/plugins/by-name/windsurf-nvim/deprecations.nix
Austin Horstman cf141c07a8 plugins/deprecations: move codeium enable option renames to top level deprecations
Causes our checks to fail to have the rename alias done in the module
themselves..
2025-04-20 07:55:12 +10:00

55 lines
1,002 B
Nix

{
lib,
...
}:
{
imports =
# TODO: added 2024-09-03 remove after 24.11
lib.nixvim.deprecation.mkSettingsRenamedOptionModules [ "plugins" "codeium-nvim" ]
[ "plugins" "windsurf-nvim" "settings" ]
[
"configPath"
"binPath"
[
"api"
"host"
]
[
"api"
"port"
]
[
"tools"
"uname"
]
[
"tools"
"uuidgen"
]
[
"tools"
"curl"
]
[
"tools"
"gzip"
]
[
"tools"
"languageServer"
]
"wrapper"
]
# TODO: introduced 2025-04-19
++
lib.nixvim.deprecation.mkSettingsRenamedOptionModules [ "plugins" "codeium-nvim" ]
[ "plugins" "windsurf-nvim" ]
[
"package"
"settings"
{
old = "extraOptions";
new = "settings";
}
];
}