mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
33 lines
725 B
Nix
33 lines
725 B
Nix
{
|
|
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" ]
|
|
[
|
|
"package"
|
|
"settings"
|
|
"keymaps"
|
|
{
|
|
old = "extraConfig";
|
|
new = "settings";
|
|
}
|
|
];
|
|
}
|