mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-14 11:14:36 +02:00
56 lines
1,002 B
Nix
56 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";
|
||
|
}
|
||
|
];
|
||
|
}
|