nix-config/modules/home-manager/neovim/config/plugins/undotree.nix

13 lines
200 B
Nix
Raw Normal View History

2025-06-02 02:09:06 +01:00
{ config, lib, ... }:
{
plugins.undotree.enable = true;
keymaps = lib.mkIf config.plugins.undotree.enable [
2025-07-10 22:55:59 +01:00
{
action = "<cmd>UndotreeToggle<CR>";
key = "<leader>u";
}
2025-06-02 02:09:06 +01:00
];
}