mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-23 17:52:18 +00:00
Compare commits
4 commits
ee9d6bb43f
...
36ddcf9cc7
Author | SHA1 | Date | |
---|---|---|---|
36ddcf9cc7 | |||
70b6d9bc8a | |||
3de14bb202 | |||
e9f89c8071 |
2 changed files with 4 additions and 2 deletions
|
@ -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";
|
||||||
|
|
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in a new issue