nix-config/modules2/nixvim/undotree.nix

12 lines
190 B
Nix

{
flake.modules.nixvim.custom = {
plugins.undotree.enable = true;
keymaps = [
{
action = "<cmd>UndotreeToggle<CR>";
key = "<leader>u";
}
];
};
}