aboutsummaryrefslogtreecommitdiff
path: root/git/.gitconfig
blob: aabb3cda815b1ef2000b0cd5bef911a88e148b51 (plain)
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
[user]
	email = [email protected]
	name = Akshay

[commit]
    verbose = true

[core]
    pager = delta
    hooksPath = "/home/np/.hooks/"

[interactive]
    diffFilter = delta --color-only

[delta]
    features = decorations labels
    syntax-theme = none
    zero-style = 8
    navigate = true

[delta "decorations"]
    file-decoration-style = none
    whitespace-error-style = 22 reverse
    minus-style = 7 "#440000"
    minus-emph-style = 7 bold "#990000"
    plus-style = 7 "#003300"
    plus-emph-style = 7 bold "#009900"
    file-style = 7 italic
    hunk-header-style = 7
    hunk-header-decoration-style = 8 ul

[delta "labels"]
    file-modified-label = " MODIFIED "
    file-removed-label  = " REMOVED "
    file-added-label    = " ADDED "
    file-renamed-label  = " RENAMED "