diff --git a/homes/modules/git.nix b/homes/modules/git.nix index 3e0cfb0..82d0f1e 100755 --- a/homes/modules/git.nix +++ b/homes/modules/git.nix @@ -5,6 +5,19 @@ }: { programs.git = { enable = true; + lfs.enable = true; + + userName = "Emile Clark-Boman"; + userEmail = "eclarkboman@gmail.com"; + + aliases = { + s = "status"; + d = "diff"; + l = "log"; + c = "commit"; + p = "push"; + }; + extraConfig = { color.ui = true; core.editor = "hx"; @@ -22,8 +35,5 @@ }; }; }; - - userName = "Emile Clark-Boman"; - userEmail = "eclarkboman@gmail.com"; }; }