summaryrefslogtreecommitdiff
path: root/git/.gitconfig
blob: 0e9b0bbbaca0e69b0b18ea0617bbbfd907992010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[user]
	name = Santo Cariotti
	email = santo@dcariotti.me
	signingkey = C9B7C8FD3701C2C6
[alias]
	ci = commit
	co = checkout
	logs =  log --graph --branches --remotes --tags --pretty=format':%C(yellow)%h%C(green)%d%Creset %s %C(yellow)|%Creset %C(cyan)%an <%ae> %C(yellow)| %C(white)%aD %C(red)(%ar)%Creset'
	st = status
	fd = "!f() { git log --grep=$1; }; f"
	amend = commit --amend
[credential]
	helper = store
[core]
	editor = nvim
	pager = delta
[init]
	defaultBranch = main
[grep]
	lineNumber = true
[color "grep"]
	lineNumber = yellow
	match = red bold
	filename = cyan
[merge]
	tool = vimdiff
	conflictstyle = diff3
[mergetool]
	prompt = false
[interactive]
	diffFilter = delta --color-only
[delta]
	features = side-by-side line-numbers decorations
[pull]
	rebase = false