Common/git: update git and delta settings

This commit is contained in:
Toast 2025-12-05 15:59:37 +01:00
parent 8331e8c875
commit e6bdf0f984

View file

@ -7,15 +7,19 @@
home-manager.users.toast = { home-manager.users.toast = {
programs.git = { programs.git = {
enable = true; enable = true;
userName = "Toast"; settings = {
userEmail = "toast003@tutamail.com"; user.name = "toast";
delta.enable = true; user.email = "toast003@tutamail.com";
extraConfig = {
init.defaultBranch = "main"; init.defaultBranch = "main";
diff.colorMoved = "default"; diff.colorMoved = "default";
commit.verbose = "true"; commit.verbose = "true";
}; };
}; };
programs.delta = {
enable = true;
enableGitIntegration = true;
};
catppuccin.delta.enable = true; catppuccin.delta.enable = true;
}; };
} }