flake/nixos/nvim/plugins/lazygit.nix

19 lines
363 B
Nix

{
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;
};
}
];
};
}