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

15 lines
181 B
Nix
Raw Normal View History

2024-06-25 17:16:49 +02:00
{
lib,
config,
...
}: let
inherit (lib.modules) mkIf;
cfg = config.vim.lazy;
in {
config.vim = mkIf cfg.enable {
startPlugins = ["lz-n"];
# optPlugins =
};
}