plugins/codeium-nvim: move deprecations to dedicated file

This commit is contained in:
Gaetan Lepage 2025-04-11 14:56:13 +02:00
parent 327d491936
commit b823b70199
2 changed files with 37 additions and 34 deletions

View file

@ -16,40 +16,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
];
# TODO: added 2024-09-03 remove after 24.11
deprecateExtraOptions = true;
optionsRenamedToSettings = [
"configPath"
"binPath"
[
"api"
"host"
]
[
"api"
"port"
]
[
"tools"
"uname"
]
[
"tools"
"uuidgen"
]
[
"tools"
"curl"
]
[
"tools"
"gzip"
]
[
"tools"
"languageServer"
]
"wrapper"
];
inherit (import ./deprecations.nix) deprecateExtraOptions optionsRenamedToSettings;
# Register nvim-cmp association
imports = [

View file

@ -0,0 +1,36 @@
{
deprecateExtraOptions = true;
optionsRenamedToSettings = [
"configPath"
"binPath"
[
"api"
"host"
]
[
"api"
"port"
]
[
"tools"
"uname"
]
[
"tools"
"uuidgen"
]
[
"tools"
"curl"
]
[
"tools"
"gzip"
]
[
"tools"
"languageServer"
]
"wrapper"
];
}