nvf/modules/plugins/utility/undotree/undotree.nix
2025-07-20 14:15:49 -04:00

7 lines
169 B
Nix

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