-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig-personal
50 lines (49 loc) · 1.31 KB
/
.gitconfig-personal
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
[user]
name = Evan Dower
email = [email protected]
[color]
ui = auto
[core]
pager = delta --true-color always
excludesfile = ~/.gitignore
[push]
default = simple
followTags = true
[alias]
slog = log --stat --summary
dag = log --graph --decorate --pretty=oneline --abbrev-commit
dags = log --graph --decorate --all --stat --summary
pdiff = diff -M -C -C --color-words -b -w
plog = log -p -M -C -C --color-words -b -w
splog = log --stat --summary -p --color-words -b -w
backup = push --all -f --prune edower
ready = !git push -u origin HEAD:$(git symbolic-ref --short HEAD)
[branch]
autosetupmerge = always
[diff]
wordRegex = [[:upper:]][[:lower:]]+|[[:lower:]]+|[[:upper:]]+|[[:digit:]]+|[[:punct:]]|[^[:space:]]
noprefix = true
compactionHeuristic = true
algorithm = histogram
renames = copies
colorMoved = default
[rerere]
enabled = true
[credential]
helper = store
[interactive]
diffFilter = delta --true-color always --color-only
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
templatedir = ~/.git-templates
[pull]
ff = only
[delta]
syntax-theme = base16-256
line-numbers = true
side-by-side = false
word-diff-regex = [[:upper:]][[:lower:]]+|[[:lower:]]+|[[:upper:]]+|[[:digit:]]+|[[:punct:]]|[^[:space:]]