nix-community.nixvim/plugins/by-name/lastplace/deprecations.nix
2025-02-02 09:08:57 -06:00

28 lines
527 B
Nix

{ lib }:
{
imports =
let
basePath = [
"plugins"
"lastplace"
];
settingsPath = basePath ++ [ "settings" ];
in
lib.nixvim.mkSettingsRenamedOptionModules basePath settingsPath [
{
old = "ignoreBuftype";
new = "lastplace_ignore_buftype";
}
{
old = "ignoreFiletype";
new = "lastplace_ignore_filetype";
}
{
old = "openFolds";
new = "lastplace_open_folds";
}
];
deprecateExtraOptions = true;
}