nix-config/modules/home-manager/coding/neovim/config/plugins/undotree.nix
2025-06-12 13:00:10 +01:00

9 lines
184 B
Nix

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