aboutsummaryrefslogtreecommitdiff
path: root/.gitconfig
blob: bea41ee3f7b9b98f396b65f3f9527534d829ddab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[user]
	name = Alec Goncharow
	email = alec@goncharow.dev
[core]
	editor = nvim
[pull]
	rebase = true
[init]
	defaultBranch = main
[diff]
  tool = difftastic
[difftool]
  prompt = false
[difftool "difftastic"]
  cmd = difft "$LOCAL" "$REMOTE"
[pager]
  difftool = true
# `git dft` is less to type than `git difftool`.
[alias]
  difft = difftool
  dift = difftool
  dft = difftool