-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
executable file
·43 lines (40 loc) · 1018 Bytes
/
Copy path.gitconfig
File metadata and controls
executable file
·43 lines (40 loc) · 1018 Bytes
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
[core]
excludesfile = ~/.global_gitignore
pager = delta
symlinks = false
[user]
name = Jatin Kathuria
email = jtn.kathuria@gmail.com
[includeIf "gitdir:~/projects/"]
path = ~/work.gitconfig
[includeIf "gitdir:~/bmw/"]
path = ~/bmw.gitconfig
[diff]
tool = vimdiff
[mergetool "nvim"]
cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
# set "nvim" as tool for merging
[merge]
tool = nvim
[interactive]
diffFilter = delta --color-only
[delta]
features = side-by-side line-numbers decorations
whitespace-error-style = 22 reverse
[delta "decorations"]
commit-style = yellow bold
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
[http]
version = HTTP/1.1
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[credential "https://github.com"]
helper =
helper = !/opt/homebrew/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/opt/homebrew/bin/gh auth git-credential