commit 50acd749a323f2ead03f224552a8141251db93ff
parent d14858dff5c5f15fb1c53a283fde7214c9abda58
Author: Vincent Demeester <vincent@sbr.pm>
Date: Mon, 10 Sep 2018 11:19:15 +0200
No need for space at the end of abbrs
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/git.nix b/git.nix
@@ -16,7 +16,7 @@ rec {
programs.fish.shellAbbrs = {
gs = "git status";
gb = "git b";
- gfr = "git fetch -p --all;and git rebase -S --autostash ";
+ gfr = "git fetch -p --all;and git rebase -S --autostash";
};
programs.git = {
enable = true;