mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
plugins/codeium-nvim: move deprecations to dedicated file
This commit is contained in:
parent
327d491936
commit
b823b70199
2 changed files with 37 additions and 34 deletions
|
@ -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 = [
|
||||
|
|
36
plugins/by-name/codeium-nvim/deprecations.nix
Normal file
36
plugins/by-name/codeium-nvim/deprecations.nix
Normal 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"
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue