-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig.sample
More file actions
45 lines (34 loc) · 877 Bytes
/
gitconfig.sample
File metadata and controls
45 lines (34 loc) · 877 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
44
45
# This is Git's per-user configuration file.
[user]
name = Alex Meuer
email = github@alexmeuer.com
signingkey = 54115713E8D9CA7C
[init]
defaultBranch = main
[core]
pager = delta
[interactive]
diffFilter = delta --color-only
[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)
# side-by-side = true
syntax-theme = gruvbox-dark
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[pull]
rebase = true
[commit]
gpgsign = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[fetch]
prune = true
# I keep my org-specific config in a separate file.
[includeIf "gitdir:~/repos/everworks/"]
path = ~/repos/everworks/.gitconfig