lib/version: init

This commit is contained in:
Matt Sturgeon 2025-05-20 22:26:54 +01:00
parent 14c7f5f896
commit ce6c733190
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 7 additions and 0 deletions

View file

@ -25,6 +25,7 @@ lib.makeExtensible (
options = call ./options.nix { }; options = call ./options.nix { };
plugins = call ./plugins { }; plugins = call ./plugins { };
utils = call ./utils.nix { inherit _nixvimTests; } // call ./utils.internal.nix { }; utils = call ./utils.nix { inherit _nixvimTests; } // call ./utils.internal.nix { };
version = call ./version.nix { inherit flake; };
# Top-level helper aliases: # Top-level helper aliases:
# TODO: deprecate some aliases # TODO: deprecate some aliases

6
lib/version.nix Normal file
View file

@ -0,0 +1,6 @@
{
lib,
flake,
}:
{
}