mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 03:26:17 +00:00
23 lines
428 B
Nix
23 lines
428 B
Nix
{ lib, config, ... }:
|
|
let
|
|
cfg = config.presets.undotree;
|
|
in
|
|
{
|
|
options.presets.undotree = {
|
|
enable = lib.mkEnableOption "Undotree";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
opts = {
|
|
undodir = {
|
|
__raw = "os.getenv('HOME') .. '/.config/nvim/undodir'";
|
|
};
|
|
undofile = true;
|
|
};
|
|
plugins = {
|
|
undotree.enable = true;
|
|
which-key.registrations."<leader>u" = "Undotree";
|
|
};
|
|
};
|
|
}
|