nixos-combined-flake/modules/nixvim/plugins/undotree.nix

13 lines
186 B
Nix

{
plugins.undotree.enable = true;
keymaps = [
{
key = "<leader>u";
action = "<cmd>UndotreeToggle<CR>";
options = {
silent = true;
};
}
];
}