-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
66 lines (54 loc) · 1.39 KB
/
.gitconfig
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[http]
proxy = localhost:7890
[user]
name = Noahlias
email = [email protected]
[credential]
helper = osxkeychain
[commit]
gpgSign = true
[init]
defaultBranch = main
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[interactive]
diffFilter = delta --color-only
[include]
path = "/Users/alias/.config/themes.gitconfig"
[pager]
difftool = true
[delta]
navigate = true # use n and N to move between diff sections
light = false # set to true if you're in a terminal w/ a light background color (e.g. the default macOS terminal)
line-numbers = true
features = catppuccin-mocha decorations
side-by-side=true
true-color=always
[merge]
conflictstyle = diff3
[diff]
tool= difftastic
colorMoved = default
[difftool]
prompt = false
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"
[tar "tar.zst"]
command = zstd -T0 -c
[tar "tar.xz"]
command = xz -c
[alias]
graph = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all -n 15
[push]
autoSetupRemote = true
[branch]
sort = -committerdate
[column]
ui = auto