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";
action = "<cmd>LazyGit<cr>";
options = {
desc = "LazyGit";
silent = true;
};
}
];
};
}