Files
TheaninovOS/modules/home-manager/programs/nixvim/presets/undotree.nix
2024-06-24 19:50:16 +02:00

29 lines
552 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 = # lua
"os.getenv('HOME') .. '/.config/nvim/undodir'";
undofile = true;
};
keymaps = [
{
key = "<leader>u";
mode = "n";
action = "<cmd>:UndotreeToggle<CR>";
}
];
plugins = {
undotree.enable = true;
which-key.registrations."<leader>u" = "Undotree";
};
};
}