Skip to content

Commit

Permalink
fix(git): change put alias
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnossiom committed Nov 22, 2024
1 parent daa705c commit 63ff3d7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion home-manager/fragments/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ in
ap = "add --patch";

pu = "push";
put = "push --tags";
put = "push --follow-tags";
puf = "push --force-with-lease";
pl = "pull";

Expand Down Expand Up @@ -167,9 +167,18 @@ in
programs.lazygit = {
enable = true;
settings = {
gui = {
showFileTree = false;
showRandomTip = false;
showCommandLog = false;
border = "single";
};
git = {
paging.externalDiffCommand = "difft --color=always";
};

# to be declarative or not to be declarative?
update.method = "never";
};
};
};
Expand Down

0 comments on commit 63ff3d7

Please sign in to comment.