pkgs(nixvim): Add vim-startuptime plugin for profile the startup time

This commit is contained in:
ulic-youthlic 2025-07-13 06:04:55 +08:00
parent cf90eede7e
commit 745a964d79
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
7 changed files with 64 additions and 0 deletions

View file

@ -2,9 +2,13 @@
makeNixvimWithModule,
pkgs,
lib,
nixvimPlugins,
}:
makeNixvimWithModule {
inherit pkgs;
extraSpecialArgs = {
inherit nixvimPlugins;
};
module = {
imports = with lib; youthlic.loadImports' ./. (filter (name: !hasSuffix "/package.nix" (toString name)));
enableMan = true;