-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdotgitconfig
More file actions
52 lines (38 loc) · 878 Bytes
/
dotgitconfig
File metadata and controls
52 lines (38 loc) · 878 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[user]
name = Ankur Shrivastava
email = ankur@ankurs.com
[url "git@github.com:"]
insteadOf = https://github.com/
[url "git@source.golabs.io:"]
insteadOf = https://source.golabs.io
[core]
excludesfile = "$HOME/.gitignore"
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
line-numbers = true
side-by-side = false
syntax-theme = Dracula
[diff]
algorithm = histogram
[merge]
conflictstyle = zdiff3
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"
[difftool]
prompt = false
[pager]
difftool = true
[alias]
dft = -c diff.external=difft diff
dlog = -c diff.external=difft log -p --ext-diff
dshow = -c diff.external=difft show --ext-diff
[pull]
rebase = false
[init]
defaultBranch = main
templateDir = ~/.git-templates
[includeIf "hasconfig:remote.*.url:git@source.golabs.io:*/**"]
path = "~/.gitconfig.work"