mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-05 18:01:32 +00:00
9 lines
137 B
Nix
9 lines
137 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib.options) mkEnableOption;
|
|
in
|
|
{
|
|
options.vim.undotree = {
|
|
enable = mkEnableOption "undotree";
|
|
};
|
|
}
|