Compare commits

...

4 commits

2 changed files with 4 additions and 2 deletions

View file

@ -7,8 +7,8 @@
ccat = "egrep -v '^\s*(#|\\$)'"; ccat = "egrep -v '^\s*(#|\\$)'";
g = "git"; g = "git";
ga = "git add"; ga = "git add";
gc = "git commit"; # interactive commit gc = "git commit -S"; # interactive commit
gcm = "git commit -m"; # quick commit gcm = "git commit -S -m"; # quick commit
gg = "git graph"; gg = "git graph";
gs = "git status"; gs = "git status";
jqless = "jq -C | less -r"; jqless = "jq -C | less -r";

View file

@ -13,8 +13,10 @@
userEmail = lib.mkDefault email; userEmail = lib.mkDefault email;
userName = lib.mkDefault "John Bowdre"; userName = lib.mkDefault "John Bowdre";
extraConfig = { extraConfig = {
gpg.format = "ssh";
init.defaultBranch = "main"; init.defaultBranch = "main";
pull.rebase = false; pull.rebase = false;
user.signingKey = "~/.ssh/id_ed25519.pub";
}; };
}; };
} }