mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-05 18:01:32 +00:00
7 lines
177 B
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]";
|
|
};
|
|
}
|