nix-config/modules/nixvim/undotree.nix

13 lines
190 B
Nix
Raw Normal View History

2025-07-26 02:35:57 +01:00
{
flake.modules.nixvim.custom = {
plugins.undotree.enable = true;
keymaps = [
{
action = "<cmd>UndotreeToggle<CR>";
key = "<leader>u";
}
];
};
}