fixup! fidget: lazy load

This commit is contained in:
Ching Pei Yang 2024-10-06 15:17:28 +02:00
parent d5b5c5294c
commit 887144f896
No known key found for this signature in database
GPG key ID: 062FBBCE1D0C5DD9

View file

@ -8,15 +8,13 @@
cfg = config.vim.visuals.fidget-nvim;
in {
config = mkIf cfg.enable {
vim.lazy = {
plugins = [
{
package = "fidget-nvim";
setupModule = "fidget";
event = "LspAttach";
inherit (cfg) setupOpts;
}
];
};
vim.lazy.plugins = [
{
package = "fidget-nvim";
setupModule = "fidget";
event = "LspAttach";
inherit (cfg) setupOpts;
}
];
};
}