From f11d0c09a5cfb8da6cfe3ec5516e0f259471b503 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 1 Jul 2024 10:51:02 +0200 Subject: [PATCH] feat: adds `git stat` and `git lg` --- modules/home/git.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/home/git.nix b/modules/home/git.nix index fc60996..759f5c6 100644 --- a/modules/home/git.nix +++ b/modules/home/git.nix @@ -9,6 +9,8 @@ extraConfig = { init.defaultBranch = "master"; credential.helper = "store"; + alias.stat = "status"; + alias.lg = "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)%Creset' --abbrev-commit"; }; };