nvim.nix/config/plugins/git/lazygit.nix

18 lines
204 B
Nix
Raw Normal View History

2024-08-04 21:19:37 +08:00
{ ... }:
{
plugins.lazygit = {
enable = true;
};
keymaps = [
{
mode = "n";
key = "<leader>lg";
action = "<cmd>LazyGit<cr>";
options.desc = "LazyGit";
}
];
}