nixvim-config/config/plugins/lazygit.nix

17 lines
224 B
Nix
Raw Normal View History

2024-08-03 20:57:30 +00:00
{
plugins.lazygit = {
enable = true;
};
keymaps = [
{
action = "<cmd>:LazyGit<CR>";
key = "<leader>lg";
}
{
action = "<cmd>:LazyGitFilter<CR>";
key = "<leader>lc";
}
];
}