fix(git): improve git config for delta + LM HTTPS

This commit is contained in:
Pierre Martin
2026-04-17 10:35:53 +02:00
parent a5db59964d
commit ef7c8b56c4

View File

@@ -2,6 +2,15 @@
{
programs.gitui.enable = true;
programs.delta = {
enable = true;
enableGitIntegration = true;
options = {
navigate = true;
dark = true;
};
};
programs.git = {
enable = true;
package = pkgs.gitFull;
@@ -23,14 +32,6 @@
"CLAUDE.local.md"
];
delta = {
enable = true;
options = {
navigate = true;
dark = true;
};
};
settings = {
alias = {
co = "checkout";
@@ -65,6 +66,10 @@
# see https://adamj.eu/tech/2022/10/15/how-to-rebase-stacked-git-branches/
rebase.updateRefs = true;
"url \"git@gitlab.lundimatin.app:\"" = {
insteadOf = "https://gitlab.lundimatin.app/";
};
};
};
}