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.lazygit = {settings = {os.editPreset = "nvim";};};
programs.diff-so-fancy = {
enable = true;
enableGitIntegration = true;
};
programs.git = { programs.git = {
enable = true; enable = true;
aliases = { settings = {
co = "checkout"; alias = {
br = "branch"; co = "checkout";
ci = "commit"; br = "branch";
st = "status"; ci = "commit";
last = "cat-file commit HEAD"; st = "status";
}; last = "cat-file commit HEAD";
diff-so-fancy = {enable = true;}; };
extraConfig = {
core = { core = {
user = "Don Harper"; user = "Don Harper";
email = "duck@duckland.org"; email = "duck@duckland.org";