utility/undotree: init module

This commit is contained in:
Abhi 2025-07-19 14:14:40 -04:00
commit b7b442737a
No known key found for this signature in database
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ 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;
# # ...
# };
};
};
}