dotfiles/modules/programs/nvim/new_plugins/lazygit.nix
2024-10-24 11:50:07 +02:00

14 lines
243 B
Nix

_:
{
home-manager.users.moritz.programs.nixvim = {
keymaps = [
{ key = "<leader>g"; action = "<cmd>LazyGit<cr>"; options.desc = "Lazygit"; }
];
plugins.lazygit = {
enable = true;
settings = { };
};
};
}