utility/undotree: removed unimportant boilerplate

This commit is contained in:
Abhi 2025-07-19 14:44:47 -04:00
commit 81d566ac39
No known key found for this signature in database
5 changed files with 20 additions and 20 deletions

View file

@ -26,5 +26,6 @@
./wakatime
./yanky-nvim
./yazi-nvim
./undotree
];
}

View file

@ -0,0 +1,6 @@
{ ... }:
{
vim.lazy.plugins.undotree = {
cmd = [ "UndotreeToggle" ];
};
}

View file

@ -0,0 +1,6 @@
{
imports = [
./undotree.nix
./config.nix
];
}

View file

@ -1,25 +1,9 @@
{ lib, ... }:
let
inherit (lib.types) bool int;
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.nvim.types) mkPluginSetupOption;
inherit (lib.options) mkEnableOption;
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;
# # ...
# };
};
};
}