personal dotfiles: my Hyprland config
Diffstat (limited to '.gitconfig')
| -rw-r--r-- | .gitconfig | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..3a514eb --- /dev/null +++ b/.gitconfig @@ -0,0 +1,27 @@ +[user] + name = Zach DeCook + email = zach.decook@bettercarpeople.com +[alias] + s = status + ds = diff --staged + uncommit = reset --soft HEAD~1 + recommit = commit -C 'HEAD@{1}' + grepn = grep -n + mod = !git diff HEAD --relative | diff-so-fancy | grep \"@.*@\" | cut -d\" \" -f2 | grep -v \"^$\" | grep -v \"*\" | uniq: + ndiff = !git --no-pager diff + ddiff = -c diff.external=difft -c core.pager="less" diff + git = !git + gerp = grep +[core] + pager = diff-so-fancy | less --tabs=4 -RFX +[merge] + conflictstyle = diff3 +[interactive] + diffFilter = diff-so-fancy --patch +[sendemail] + smtpserver = smtp.gmail.com + smtpuser = zach.decook@bettercarpeople.com + smtpencryption = tls + smtpserverport = 587 +[advice] + statusHints = false |