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