-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
75 lines (59 loc) · 1.63 KB
/
.gitconfig
File metadata and controls
75 lines (59 loc) · 1.63 KB
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
75
[credential]
helper = cache --timeout=3600
[core]
ui = never
pager = delta
excludesfile = ~/.gitignore
editor = nvim
hooksPath = ~/git/hooks
quotepath = false
#[filter "media"]
# clean = git-media-clean %f
# smudge = git-media-smudge %f
[push]
default = matching
[diff]
tool = vimdiff
[difftool]
prompt = false
[merge]
conflictstyle = zdiff3
[alias]
co = checkout
ci = commit
st = status --branch --short
br = branch
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
lga = log --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
sl = log --all --branches --decorate --graph --oneline
log = log --all --branches --graph
[user]
name = sv.junic
email = xxxxx
[diff]
tool = vimdiff
[difftool]
prompt = false
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
dark = true # or light = true, or omit for auto-detection
features = my-theme
side-by-side = true
[delta "my-theme"]
zero-style = "#C8C8C8"
line-numbers-left-style = "#808080"
line-numbers-right-style = "#808080"
line-numbers-minus-style = "#FF8080"
line-numbers-zero-style = "#A0A0A0"
line-numbers-plus-style = "#80FF80"
file-style = bold "#6CB6FF"
file-decoration-style = "#6CB6FF"
hunk-header-style = bold "#FFD580"
hunk-header-decoration-style = "#666666"
plus-style = syntax "#009900"
minus-style = syntax "#990000"
[color]
ui = auto