dotfiles/gitconfig
2024-07-25 15:47:38 +02:00

41 lines
817 B
Plaintext

[user]
name = Dan Suster
email = dan@thegolem.cz
[commit]
gpgsign = true
[core]
autocrlf = input
[core]
editor = nvim
excludesfile = ~/.gitignore
autocrlf = input
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[init]
defaultBranch = master
[web]
browser = firefox
[credential]
helper = osxkeychain
[push]
default = simple
[merge]
tool = kdiff3
[difftool]
prompt = false
[alias]
c = commit
ca = commit -a
cm = commit -m
cam = commit -am
d = diff
dc = diff --cached
l = log --graph --pretty=format:"%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset" --abbrev-commit
gpg = config user.signingkey
name = config user.name
email = config user.email
[pull]
rebase = true