lz.n: load lz.n

This commit is contained in:
Ching Pei Yang 2024-07-10 00:28:18 +02:00 committed by Pei Yang Ching
parent e839f68a60
commit 434c2e233e
1 changed files with 15 additions and 1 deletions

View File

@ -3,12 +3,26 @@
config,
...
}: let
inherit (builtins) toJSON;
inherit (lib.modules) mkIf;
inherit (lib.attrsets) mapAttrsToList;
inherit (lib.generators) mkLuaInline;
inherit (lib.nvim.lua) toLuaObject;
inherit (lib.nvim.dag) entryAnywhere;
cfg = config.vim.lazy;
toLznSpec = name: plugin:
(removeAttrs plugin ["package"])
// {__HACK = mkLuaInline "nil, [1] = ${toJSON name}";};
lznSpecs = mapAttrsToList toLznSpec cfg.plugins;
in {
config.vim = mkIf cfg.enable {
startPlugins = ["lz-n"];
# optPlugins =
optPlugins = mapAttrsToList (_: plugin: plugin.package) cfg.plugins;
luaConfigRC.lzn-load = entryAnywhere ''
require('lz.n').load(${toLuaObject lznSpecs})
'';
};
}