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

@ -0,0 +1,11 @@
{
srcs,
vimUtils,
}: let
inherit (srcs.nvim_vim-startuptime) src version date;
in
vimUtils.buildVimPlugin {
pname = "vim-startuptime";
version = "0-unstable-${date}-git${version}";
inherit src;
}