diff options
Diffstat (limited to '.config/git/config')
-rw-r--r-- | .config/git/config | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.config/git/config b/.config/git/config new file mode 100644 index 0000000..fe7f4ea --- /dev/null +++ b/.config/git/config @@ -0,0 +1,22 @@ +[alias] + graph = log --oneline --decorate --graph --all +[merge] + tool = vimdiff +[user] + email = a@farzat.xyz + name = A Farzat +[core] + bare = false +[mergetool "vimdiff"] + path = nvim +[init] + defaultBranch = master +[fetch] + prune = true +[sendemail] + smtpserver = mail.farzat.xyz + smtpuser = a@farzat.xyz + smtpencryption = tls + smtpserverport = 587 +[credential] + helper = /usr/lib/git-core/git-credential-libsecret |