1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-16 22:11:09 +01:00

plugins/neo-tree: remove old warnings

This commit is contained in:
Gaetan Lepage 2025-10-09 09:41:45 +02:00 committed by Gaétan Lepage
parent bb9d744b64
commit 25bec79934

View file

@ -8,30 +8,8 @@
with lib;
let
cfg = config.plugins.neo-tree;
basePluginPath = [
"plugins"
"neo-tree"
];
in
{
imports = [
(mkRemovedOptionModule (
basePluginPath
++ [
"sourceSelector"
"tabLabels"
]
) "Use `plugins.neo-tree.sourceSelector.sources` to achieve the same functionality.")
(mkRemovedOptionModule (
basePluginPath ++ [ "closeFloatsOnEscapeKey" ]
) "This option has been removed from upstream.")
# TODO: added 2025-04-07, remove after 25.05
(lib.nixvim.mkRemovedPackageOptionModule {
plugin = "neo-tree";
packageName = "git";
})
];
options.plugins.neo-tree =
let
listOfRendererComponents = with types; listOf (either str attrs);