-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
59 lines (57 loc) · 1.39 KB
/
.gitconfig
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
53
54
55
56
57
58
59
[user]
email = fabio4335@gmail.com
name = eximus
signingkey = D3A533A5142DAA0E
[commit]
gpgsign = true
[push]
default = current
followTags = true
[core]
editor = vim
pager = delta
[init]
defaultBranch = master
[advice]
statusHints = false
[pull]
rebase = false
[branch]
sort = -committerdate
[diff]
tool = vimdiff
[difftool]
prompt = false
[merge]
tool = vimdiff
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[alias]
unstage = restore --staged
last = log -1 HEAD
lol = log --oneline --graph --pretty=format:'%C(yellow)%h%Creset%C(auto)%(decorate:prefix= {,suffix=})%Creset %s - %C(bold blue)%an - %C(black)%cr%Creset' --date-order --color=always
summary = !which onefetch && onefetch --no-color-palette --no-art
[interactive]
diffFilter = delta --color-only
[delta]
features = line-numbers decorations
syntax-theme = none
minus-style = bold 1
minus-emph-style = bold 9 reverse
minus-non-emph-style = bold 1
plus-style = bold 2
plus-emph-style = bold 10 reverse
plus-non-emph-style = bold 2
whitespace-error-style = 22 reverse
[delta "decorations"]
file-style = bold yellow
file-decoration-style = none
hunk-header-decoration-style = none
hunk-header-line-number-style = bold blue
hunk-header-style = line-number blue
[delta "line-numbers"]
line-numbers-minus-style = 1 bold
line-numbers-plus-style = 2 bold