nvf/modules/plugins/utility/undotree/undotree.nix
Abhirath A 4847c099eb
utility/undotree: added description to enable
Co-authored-by: raf <raf@notashelf.dev>
2025-07-20 05:39:51 -04:00

9 lines
171 B
Nix

{ lib, ... }:
let
inherit (lib.options) mkEnableOption;
in
{
options.vim.undotree = {
enable = mkEnableOption "undo history visualizer for Vim [undotree]";
};
}