Skip to content

Commit

Permalink
feat(git): add delta and some config
Browse files Browse the repository at this point in the history
  • Loading branch information
uku3lig committed Apr 25, 2024
1 parent 44e05da commit 229cec6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions programs/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,18 @@
signByDefault = true;
};

delta.enable = true;

extraConfig = {
init.defaultBranch = "main";
core.autocrlf = "input";
push.autoSetupRemote = true;
gpg.format = "ssh";
merge.conflictStyle = "zdiff3";
rebase.autoStash = true;
status.submoduleSummary = true;
diff.submodule = "log";
submodule.recurse = true;
};
};

Expand Down

0 comments on commit 229cec6

Please sign in to comment.