Gitignore
This commit is contained in:
parent
534a0f3307
commit
5cf0960459
|
@ -1,4 +1,4 @@
|
|||
{ inputs, config, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.git = {
|
||||
|
@ -11,11 +11,13 @@
|
|||
};
|
||||
ignores = [
|
||||
"*.direnv/"
|
||||
".dmypy.json"
|
||||
];
|
||||
extraConfig = {
|
||||
credentials.helper = "store";
|
||||
pull.rebase = false;
|
||||
push.autoSetupRemove = true;
|
||||
branch.autoSetupMerge = "simple";
|
||||
init.defaultBranch = "master";
|
||||
diff.noprefix = true;
|
||||
color.ui = "auto";
|
||||
|
|
Loading…
Reference in New Issue