diff --git a/modules/home/programs/git/default.nix b/modules/home/programs/git/default.nix index 46eb67e..30069e6 100644 --- a/modules/home/programs/git/default.nix +++ b/modules/home/programs/git/default.nix @@ -7,5 +7,11 @@ color.ui = "auto"; pull.rebase = true; }; + aliases = { + a = "add ."; + c = "commit"; + d = "diff --cached"; + p = "push"; + }; }; }