nv/config/git/lazygit.nix

21 lines
335 B
Nix
Raw Permalink Normal View History

2024-03-04 13:52:56 +00:00
{pkgs, ...}: {
extraPlugins = with pkgs.vimPlugins; [
lazygit-nvim
];
extraConfigLua = ''
require("telescope").load_extension("lazygit")
'';
keymaps = [
{
mode = "n";
2024-03-10 07:13:54 +00:00
key = "<leader>gG";
2024-03-04 13:52:56 +00:00
action = "<cmd>LazyGit<CR>";
options = {
desc = "LazyGit (root dir)";
};
}
];
}