flake/nixos/nvim/plugins/lazygit.nix

20 lines
363 B
Nix
Raw Normal View History

2025-02-02 18:53:01 -06:00
{
programs.nixvim = {
plugins.lazygit = {
enable = true;
};
extraConfigLua = ''require("telescope").load_extension("lazygit")'';
keymaps = [
{
mode = "n";
key = "<leader>g";
2025-02-08 12:53:14 -06:00
action = "<CMD>LazyGit<CR>";
2025-02-02 18:53:01 -06:00
options = {
desc = "LazyGit";
silent = true;
};
}
];
};
}