nvf/modules/plugins/utility/undotree/undotree.nix

7 lines
177 B
Nix

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