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

10 lines
184 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 [
{ action = "<cmd>UndotreeToggle<CR>"; key = "<leader>u"; }
];
}