Skip to content

Commit 3f3693a

Browse files
committed
add gitconfig
1 parent 1c03454 commit 3f3693a

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

gitconfig

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
[user]
2+
name = FIRST LAST
3+
4+
5+
[init]
6+
defaultBranch = main
7+
8+
[core]
9+
excludesfile = $HOME/.gitignore
10+
editor = nvim
11+
12+
[safe]
13+
directory = ${HOME_DIR}/
14+
directory = ${HOME_DIR}
15+
directory = ${HOME_DIR}/.oh-my-zsh
16+
17+
[filter "lfs"]
18+
clean = git-lfs clean -- %f
19+
smudge = git-lfs smudge -- %f
20+
process = git-lfs filter-process
21+
required = true
22+
23+
[push]
24+
autoSetupRemote = true
25+
followTags = true
26+
27+
[diff]
28+
algorithm = histogram
29+
colorMoved = plain
30+
mnemonicPrefix = true
31+
renames = true
32+
tool = nvimdiff
33+
34+
[difftool]
35+
prompt = true
36+
37+
[difftool "nvimdiff"]
38+
cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""
39+
40+
[branch]
41+
sort = -committerdate
42+
43+
[tag]
44+
sort = version:refname
45+
46+
[column]
47+
ui = auto
48+
49+
[help]
50+
autocorrect = prompt

0 commit comments

Comments
 (0)