add lazy module skeleton

This commit is contained in:
Pei Yang Ching 2024-06-25 17:16:49 +02:00 committed by Pei Yang Ching
commit 40c40a56cc
4 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{
lib,
config,
...
}: let
inherit (lib.modules) mkIf;
cfg = config.vim.lazy;
in {
config.vim = mkIf cfg.enable {
startPlugins = ["lz-n"];
# optPlugins =
};
}