all repos

dotfiles @ 57aa413675faf484bd64aaf85569126b23ae2fc2

i use rach linux btw

dotfiles/gitconfig (view raw)

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
32
[interactive]
33
    diffFilter = delta --color-only
34
35
[merge]
36
    conflictstyle = diff3
37
38
[rerere]
39
    enabled = true
40
41
[diff]
42
    colorMoved = default
43
44
[delta]
45
    features = tokyonight
46
47
    true-color = always
48
    navigate = true
49
    light = false
50
    keep-plus-minus-markers = true
51
    line-numbers = true
52
    file-decoration-style = none
53
54
[delta "tokyonight"]
55
    minus-style                   = syntax "#37222c"
56
    minus-non-emph-style          = syntax "#37222c"
57
    minus-emph-style              = syntax "#713137"
58
    minus-empty-line-marker-style = syntax "#37222c"
59
    line-numbers-minus-style      = "#b2555b"
60
    plus-style                    = syntax "#20303b"
61
    plus-non-emph-style           = syntax "#20303b"
62
    plus-emph-style               = syntax "#2c5a66"
63
    plus-empty-line-marker-style  = syntax "#20303b"
64
    line-numbers-plus-style       = "#266d6a"
65
    line-numbers-zero-style       = "#3b4261"
66
67
[column]
68
    ui = auto
69
70
[branch]
71
    sort = -committerdate
72
73
[commit]
74
	gpgSign = true
75
76
[fetch]
77
	writeCommitGraph = true