nix-config/modules/home-manager/neovim/config/plugins/undotree.nix
2025-07-17 21:47:19 +01:00

12 lines
200 B
Nix

{ config, lib, ... }:
{
plugins.undotree.enable = true;
keymaps = lib.mkIf config.plugins.undotree.enable [
{
action = "<cmd>UndotreeToggle<CR>";
key = "<leader>u";
}
];
}