nvf/modules/plugins/utility/undotree/undotree.nix
2025-07-19 14:37:41 -04:00

25 lines
513 B
Nix

{ lib, ... }:
let
inherit (lib.types) bool int;
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.nvim.types) mkPluginSetupOption;
in
{
options.vim.undotree = {
enable = mkEnableOption "undotree";
setupOpts = mkPluginSetupOption "undotree" {
# enable_feature_a = mkOption {
# type = bool;
# default = false;
# # ...
# };
#
# number_option = mkOption {
# type = int;
# default = 3;
# # ...
# };
};
};
}