18 lines
204 B
Nix
18 lines
204 B
Nix
{ ... }:
|
|
|
|
{
|
|
plugins.lazygit = {
|
|
enable = true;
|
|
};
|
|
|
|
keymaps = [
|
|
{
|
|
mode = "n";
|
|
key = "<leader>lg";
|
|
action = "<cmd>LazyGit<cr>";
|
|
options.desc = "LazyGit";
|
|
}
|
|
];
|
|
}
|
|
|