home/common/git | upstreams changes

This commit is contained in:
Don Harper 2025-11-12 20:56:26 -06:00
parent be3503019c
commit c7338f2cbc

View file

@ -4,17 +4,20 @@
...
}: {
programs.lazygit = {settings = {os.editPreset = "nvim";};};
programs.diff-so-fancy = {
enable = true;
enableGitIntegration = true;
};
programs.git = {
enable = true;
aliases = {
co = "checkout";
br = "branch";
ci = "commit";
st = "status";
last = "cat-file commit HEAD";
};
diff-so-fancy = {enable = true;};
extraConfig = {
settings = {
alias = {
co = "checkout";
br = "branch";
ci = "commit";
st = "status";
last = "cat-file commit HEAD";
};
core = {
user = "Don Harper";
email = "duck@duckland.org";