mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
9 lines
171 B
Nix
9 lines
171 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib.options) mkEnableOption;
|
|
in
|
|
{
|
|
options.vim.undotree = {
|
|
enable = mkEnableOption "undo history visualizer for Vim [undotree]";
|
|
};
|
|
}
|