personal dotfiles: my Hyprland config
include .gitconfig
Zach DeCook 2022-10-28
parent ef7f140 · commit 160f5aa
-rw-r--r--.gitconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig
new file mode 100644
index 0000000..8fb78fd
--- /dev/null
+++ b/.gitconfig
@@ -0,0 +1,20 @@
+[user]
+ name = Zach DeCook
+ email = zach.decook@bettercarpeople.com
+[alias]
+ ds = diff --staged
+ s = status
+ uncommit = reset --soft HEAD~1
+ ndiff = !git --no-pager diff
+ grepn = grep -n
+ recommit = commit -C 'HEAD@{1}'
+ mod = !git diff HEAD --relative | diff-so-fancy | grep \"@.*@\" | cut -d\" \" -f2 | grep -v \"^$\" | grep -v \"*\" | uniq:
+[core]
+ pager = diff-so-fancy | less --tabs=4 -RFX
+[interactive]
+ diffFilter = diff-so-fancy --patch
+[sendemail]
+ smtpserver = smtp.gmail.com
+ smtpuser = zach.decook@bettercarpeople.com
+ smtpencryption = tls
+ smtpserverport = 587