|
1
|
# vim: ft=gitconfig |
|
2
|
|
|
3
|
[user] |
|
4
|
name = Smirnov Oleksandr |
|
5
|
email = ss2316544@gmail.com |
|
6
|
signingkey = /home/olex/.ssh/id_ed25519.pub |
|
7
|
|
|
8
|
[github] |
|
9
|
name = olexsmir |
|
10
|
|
|
11
|
[gpg] |
|
12
|
program = gpg2 |
|
13
|
format = ssh |
|
14
|
|
|
15
|
[core] |
|
16
|
editor = nvim |
|
17
|
pager = delta |
|
18
|
quotePath = false |
|
19
|
|
|
20
|
[init] |
|
21
|
defaultBranch = "main" |
|
22
|
|
|
23
|
[alias] |
|
24
|
push-force = push --force-with-lease |
|
25
|
pu = push |
|
26
|
l = log --oneline --decorate |
|
27
|
lg = log --oneline --graph --all |
|
28
|
st = status -sb |
|
29
|
cm = commit -m |
|
30
|
sw = switch |
|
31
|
unfuck = reset HEAD~1 --soft |
|
32
|
|
|
33
|
[interactive] |
|
34
|
diffFilter = delta --color-only |
|
35
|
|
|
36
|
[merge] |
|
37
|
conflictstyle = diff3 |
|
38
|
|
|
39
|
[rerere] |
|
40
|
enabled = true |
|
41
|
|
|
42
|
[diff] |
|
43
|
colorMoved = default |
|
44
|
|
|
45
|
[delta] |
|
46
|
features = tokyonight |
|
47
|
|
|
48
|
true-color = always |
|
49
|
navigate = true |
|
50
|
light = false |
|
51
|
keep-plus-minus-markers = true |
|
52
|
line-numbers = true |
|
53
|
file-decoration-style = none |
|
54
|
|
|
55
|
[delta "tokyonight"] |
|
56
|
minus-style = syntax "#37222c" |
|
57
|
minus-non-emph-style = syntax "#37222c" |
|
58
|
minus-emph-style = syntax "#713137" |
|
59
|
minus-empty-line-marker-style = syntax "#37222c" |
|
60
|
line-numbers-minus-style = "#b2555b" |
|
61
|
plus-style = syntax "#20303b" |
|
62
|
plus-non-emph-style = syntax "#20303b" |
|
63
|
plus-emph-style = syntax "#2c5a66" |
|
64
|
plus-empty-line-marker-style = syntax "#20303b" |
|
65
|
line-numbers-plus-style = "#266d6a" |
|
66
|
line-numbers-zero-style = "#3b4261" |
|
67
|
|
|
68
|
[column] |
|
69
|
ui = auto |
|
70
|
|
|
71
|
[branch] |
|
72
|
sort = -committerdate |
|
73
|
|
|
74
|
[commit] |
|
75
|
gpgSign = true |
|
76
|
|
|
77
|
[fetch] |
|
78
|
writeCommitGraph = true |