aboutsummaryrefslogtreecommitdiff
path: root/git/.gitconfig
diff options
context:
space:
mode:
Diffstat (limited to 'git/.gitconfig')
-rw-r--r--git/.gitconfig36
1 files changed, 36 insertions, 0 deletions
diff --git a/git/.gitconfig b/git/.gitconfig
new file mode 100644
index 0000000..aabb3cd
--- /dev/null
+++ b/git/.gitconfig
@@ -0,0 +1,36 @@
1[user]
2 email = [email protected]
3 name = Akshay
4
5[commit]
6 verbose = true
7
8[core]
9 pager = delta
10 hooksPath = "/home/np/.hooks/"
11
12[interactive]
13 diffFilter = delta --color-only
14
15[delta]
16 features = decorations labels
17 syntax-theme = none
18 zero-style = 8
19 navigate = true
20
21[delta "decorations"]
22 file-decoration-style = none
23 whitespace-error-style = 22 reverse
24 minus-style = 7 "#440000"
25 minus-emph-style = 7 bold "#990000"
26 plus-style = 7 "#003300"
27 plus-emph-style = 7 bold "#009900"
28 file-style = 7 italic
29 hunk-header-style = 7
30 hunk-header-decoration-style = 8 ul
31
32[delta "labels"]
33 file-modified-label = " MODIFIED "
34 file-removed-label = " REMOVED "
35 file-added-label = " ADDED "
36 file-renamed-label = " RENAMED "