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 = {
programs.git = {
enable = true;
userName = "Toast";
userEmail = "toast003@tutamail.com";
delta.enable = true;
extraConfig = {
settings = {
user.name = "toast";
user.email = "toast003@tutamail.com";
init.defaultBranch = "main";
diff.colorMoved = "default";
commit.verbose = "true";
};
};
programs.delta = {
enable = true;
enableGitIntegration = true;
};
catppuccin.delta.enable = true;
};
}