14 lines
243 B
Nix
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 = { };
|
|
};
|
|
};
|
|
}
|