feat(git): add url replacements

This commit is contained in:
winston 2023-06-22 13:02:27 +02:00
parent 7c5e4aa5a3
commit a3b6a90b2e
Signed by: winston
GPG key ID: 3786770EDBC2B481

View file

@ -62,6 +62,12 @@ in {
push.default = "current"; push.default = "current";
push.gpgSign = "if-asked"; push.gpgSign = "if-asked";
rebase.autosquash = true; rebase.autosquash = true;
url = {
"https://github.com/".insteadOf = "github:";
"https://github.com/catppuccin/".insteadOf = "catppuccin:";
"https://github.com/nekowinston/".insteadOf = "nekowinston:";
"https://gitlab.com/".insteadOf = "gitlab:";
};
}; };
}; };
} }