72 lines
1.9 KiB
Nix
72 lines
1.9 KiB
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
extraConfig = {
|
|
core.editor = "nvim";
|
|
|
|
diff.external = "difft --background light";
|
|
diff.tool = "difftastic";
|
|
diff.ignoreSubmodules = "none";
|
|
|
|
difftool.difftastic.cmd = "difft --background light \"$LOCAL\" \"$REMOTE\"";
|
|
difftool.prompt = false;
|
|
|
|
fetch.writeCommitGraph = true;
|
|
fetch.recurseSubmodules = true;
|
|
|
|
format.pretty = "format:%C(yellow)%h %Cblue%>(12)%ad %C(red)%G? %Cgreen%<(7,trunc)%aN%Cred%d %Creset%s";
|
|
|
|
init.defaultBranch = "main";
|
|
|
|
log.date = "relative";
|
|
|
|
merge.ff = false;
|
|
merge.tool = "nvim";
|
|
|
|
mergetool.nvim.cmd = "nvim -f -c \"Gdiffsplit!\" \"$MERGED\"";
|
|
mergetool.prompt = false;
|
|
|
|
pager.difftool = true;
|
|
|
|
pull.rebase = true;
|
|
|
|
push.recurseSubmodules = "on-demand";
|
|
|
|
rebase.autostash = true;
|
|
|
|
rerere.enabled = true;
|
|
|
|
status.submoduleSummary = true;
|
|
|
|
submodule.recurse = true;
|
|
|
|
user.private.email = "mandlm@molez.net";
|
|
user.private.name = "Michael Mandl";
|
|
user.private.signingkey = "4AA25D647AA54CC7";
|
|
|
|
user.swp.email = "mandl@vi-bim.de";
|
|
user.swp.name = "Michael Mandl";
|
|
user.swp.signingkey = "4E60F44227F611B4";
|
|
|
|
worktree.guessRemote = true;
|
|
};
|
|
|
|
aliases = {
|
|
identity = ''! git config user.name "$(git config user.$1.name)"; git config user.email "$(git config user.$1.email)"; git config user.signingkey "$(git config user.$1.signingkey)"; git config commit.gpgsign "true"; : '';
|
|
clone-worktree = ''! mkdir $2; git clone $1 $2/.base; BRANCH=`git -C $2/.base symbolic-ref --short HEAD`; echo "branch is $BRANCH"; git -C $2/.base checkout --detach HEAD; git -C $2/.base worktree add ../$BRANCH; :'';
|
|
graph = "log --graph --all --max-count 32";
|
|
};
|
|
|
|
ignores = [
|
|
".env"
|
|
".direnv"
|
|
"*.swp"
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|