mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 04:35:58 +01:00
15 lines
355 B
Nix
15 lines
355 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkOption mkEnableOption;
|
|
inherit (lib.types) enum;
|
|
in {
|
|
options.vim.lazy = {
|
|
enable = mkEnableOption "plugin lazy-loading" // {default = true;};
|
|
loader = mkOption {
|
|
description = "Lazy loader to use";
|
|
type = enum ["lz.n"];
|
|
default = "lz.n";
|
|
};
|
|
|
|
# plugins = mkOption {};
|
|
};
|
|
}
|