forked from Piotr1215/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig-personal
74 lines (58 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[user]
email = piotrzan@gmail.com
signingkey = 7E954FC99DDF7875
name = Piotr Zaniewski
[core]
excludesFile = ~/.gitignore
pager = delta
editor = nvim
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[init]
defaultBranch = main
[commit]
gpgsign = true
template = ~/.gitmessage
[diff]
colorMoved = default
[merge]
tool = fugitive
conflictstyle = diff3
[mergetool "fugitive"]
cmd = nvim -f -c \"Gvdiffsplit!\" \"$MERGED\"
[branch]
autosetuprebase = always
[push]
default = current
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
side-by-side = true
[alias]
s = status
st = status
d = diff
dc = diff --cached
ci = commit --verbose
cia = commit --verbose --all
co = checkout
su = submodule update --init --recursive
logg = log --graph
add-commit = !git add -A && git commit
lg-detail = log --graph --decorate --pretty=format:'%C(yellow)%h%C(reset) %C(green)%ad%C(reset) %C(auto)%d%C(reset)%n%C(white)%B%C(reset)' --date=short
lg = log --graph --decorate --color=always --pretty=format:'%C(yellow)%h%C(reset) -%C(red)%d%C(reset) %s %C(green)(%cr)%C(reset)' --abbrev-commit
[url "git@github.com:"]
insteadOf = https://github.com/
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[rerere]
enabled = true
[maintenance]
repo = /home/decoder/dev/dotfiles