nixos-config/config/programs/vim/modules/dev/lazygit.nix

15 lines
260 B
Nix
Raw Normal View History

{
2022-08-10 08:20:23 +00:00
pkgs,
lib,
config,
...
}: {
vim.keybindings.keybindings-shortened."<leader>gg" = {
command = ":LazyGit<CR>";
label = "lazygit";
};
2022-08-10 08:20:23 +00:00
output.plugins = with pkgs.vimPlugins; [lazygit-nvim];
output.path.path = with pkgs; [lazygit git];
}