2022-11-11 21:23:25 +01:00
|
|
|
{ pkgs, ... }:
|
2022-03-07 16:01:52 +01:00
|
|
|
{
|
|
|
|
programs.git = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.gitFull;
|
|
|
|
|
|
|
|
userName = "h7x4";
|
2022-08-18 23:17:01 +02:00
|
|
|
userEmail = "h7x4@nani.wtf";
|
|
|
|
|
|
|
|
signing = {
|
|
|
|
key = "46B9228E814A2AAC";
|
|
|
|
signByDefault = true;
|
|
|
|
};
|
2022-03-07 16:01:52 +01:00
|
|
|
|
2022-11-11 21:23:25 +01:00
|
|
|
delta = {
|
|
|
|
enable = true;
|
|
|
|
options = {
|
|
|
|
line-numbers = true;
|
|
|
|
side-by-side = true;
|
|
|
|
theme = "Monokai Extended Origin";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-03-07 16:01:52 +01:00
|
|
|
aliases = {
|
|
|
|
aliases = "!git config --get-regexp alias | sed -re 's/alias\\.(\\S*)\\s(.*)$/\\1 = \\2/g'";
|
|
|
|
delete-merged = "!git branch --merged | grep -v '\\*' | xargs -n 1 git branch -d";
|
|
|
|
graph = "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all";
|
|
|
|
graphv = "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all";
|
2023-02-25 17:55:35 +01:00
|
|
|
forcepush = "push --force-with-lease --force-if-includes";
|
2022-03-07 16:01:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = {
|
|
|
|
core = {
|
|
|
|
whitespace = "space-before-tab,-indent-with-non-tab,trailing-space";
|
|
|
|
untrackedCache = true;
|
|
|
|
editor = "nvim";
|
|
|
|
};
|
|
|
|
|
|
|
|
"color \"branch\"".upstream = "cyan";
|
|
|
|
color.ui = "auto";
|
|
|
|
|
|
|
|
init.defaultBranch = "main";
|
|
|
|
fetch.prune = true;
|
|
|
|
pull.rebase = true;
|
2023-02-25 17:55:35 +01:00
|
|
|
|
|
|
|
push = {
|
|
|
|
default = "current";
|
|
|
|
autoSetupRemote = true;
|
|
|
|
followTags = true;
|
|
|
|
};
|
2022-03-07 16:01:52 +01:00
|
|
|
|
|
|
|
merge = {
|
|
|
|
tool = "nvimdiff";
|
|
|
|
conflictstyle = "diff3";
|
|
|
|
colorMoved = "zebra";
|
|
|
|
};
|
|
|
|
|
|
|
|
mergetool.keepBackup = false;
|
|
|
|
"mergetool \"nvimdiff\"".cmd = "nvim -d $BASE $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'";
|
|
|
|
|
|
|
|
diff = {
|
|
|
|
mnemonicPrefix = true;
|
|
|
|
renames = true;
|
|
|
|
tool = "nvimdiff";
|
|
|
|
};
|
|
|
|
|
|
|
|
grep = {
|
|
|
|
break = true;
|
|
|
|
heading= true;
|
|
|
|
lineNumber = true;
|
|
|
|
extendedRegexp = true;
|
|
|
|
};
|
|
|
|
|
2022-08-19 02:54:22 +02:00
|
|
|
github.user = "h7x4";
|
2022-03-07 16:01:52 +01:00
|
|
|
|
|
|
|
web.browser = "google-chrome-stable";
|
|
|
|
|
|
|
|
"filter \"lfs\"" = {
|
|
|
|
required = true;
|
|
|
|
smudge = "git-lfs smudge -- %f";
|
|
|
|
process = "git-lfs filter-process";
|
|
|
|
clean = "git-lfs clean -- %f";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|