diff options
Diffstat (limited to 'home/profiles/git.nix')
-rw-r--r-- | home/profiles/git.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/home/profiles/git.nix b/home/profiles/git.nix index b242fb8..f26b3eb 100644 --- a/home/profiles/git.nix +++ b/home/profiles/git.nix @@ -17,6 +17,11 @@ in signByDefault = true; }; + aliases = { + amend = "commit --amend"; + ll = "log --pretty=\"format:%h %G? %aN %s\""; + }; + extraConfig = { core.whitespace = "trailing-space,space-before-tab"; color.ui = "true"; |