-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
43 lines (43 loc) · 878 Bytes
/
gitconfig
File metadata and controls
43 lines (43 loc) · 878 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
[user]
name = NaKyle
email = nakyle.wright@gmail.com
[core]
excludesfile = ~/.gitignore
pager = less -FX
editor = nvim
autocrlf = false
[commit]
verbose = true
[push]
default = current
[merge]
tool = vimdiff
[alias]
lp = log --date=short --pretty=format:'%C(yellow bold)%h %C(cyan)(%cd)%C(reset) %s %C(green)<%an>'
sh = show --stat
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[ui]
color = true
[color]
ui = auto
[color "status"]
added = green bold
changed = red bold
untracked = red bold
[color "diff"]
meta = cyan
frag = cyan
old = red bold
new = green bold
[color "branch"]
current = green bold
remote = magenta bold
local = normal
[pull]
rebase = false
[init]
defaultBranch = main