neovim-flake/modules/wrapper/lazy/config.nix

57 lines
1.3 KiB
Nix
Raw Normal View History

2024-06-25 17:16:49 +02:00
{
lib,
config,
...
}: let
2024-07-24 12:52:47 +02:00
inherit (builtins) toJSON;
2024-06-25 17:16:49 +02:00
inherit (lib.modules) mkIf;
2024-07-10 00:28:18 +02:00
inherit (lib.attrsets) mapAttrsToList;
2024-07-24 12:52:47 +02:00
inherit (lib.generators) mkLuaInline;
inherit (lib.strings) optionalString;
2024-07-10 00:28:18 +02:00
inherit (lib.nvim.lua) toLuaObject;
inherit (lib.nvim.dag) entryAnywhere;
2024-06-25 17:16:49 +02:00
cfg = config.vim.lazy;
2024-07-10 00:28:18 +02:00
2024-08-03 14:23:34 +02:00
toLuzLznKeySpec = {
desc,
noremap,
expr,
nowait,
ft,
lhs,
rhs,
mode,
}: {
"@1" = lhs;
"@2" = rhs;
inherit desc noremap expr nowait ft mode;
};
2024-07-24 12:52:47 +02:00
toLuaLznSpec = name: spec:
2024-08-03 14:23:34 +02:00
(removeAttrs spec ["package" "setupModule" "setupOpts" "keys"])
2024-07-24 12:52:47 +02:00
// {
"@1" = name;
after = mkLuaInline ''
function()
${
optionalString (spec.setupModule != null)
"require(${toJSON spec.setupModule}).setup(${toLuaObject spec.setupOpts})"
}
${optionalString (spec.after != null) spec.after}
end
'';
2024-08-03 14:23:34 +02:00
keys = map toLuzLznKeySpec spec.keys;
2024-07-24 12:52:47 +02:00
};
lznSpecs = mapAttrsToList toLuaLznSpec cfg.plugins;
2024-06-25 17:16:49 +02:00
in {
config.vim = mkIf cfg.enable {
startPlugins = ["lz-n"];
2024-07-10 00:28:18 +02:00
optPlugins = mapAttrsToList (_: plugin: plugin.package) cfg.plugins;
luaConfigRC.lzn-load = entryAnywhere ''
require('lz.n').load(${toLuaObject lznSpecs})
'';
2024-06-25 17:16:49 +02:00
};
}