-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
43 lines (40 loc) · 1.21 KB
/
Copy pathgitconfig
File metadata and controls
43 lines (40 loc) · 1.21 KB
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]
# GitHub no-reply — public-safe, still attributes commits to the account via
# the numeric ID, exposes no real address. Work repos can override per-tree
# with an includeIf pointing at an untracked ~/.gitconfig.local.
email = 3813410+plongitudes@users.noreply.github.com
name = plongitudes
[core]
editor = nvim
excludesfile = $HOME/.gitignore_global
# define command which will be used when "nvim" is set as a merge tool
[mergetool "nvim"]
cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
# set "nvim" as tool for merging
[merge]
tool = nvim
# automatically launch merge tool without displaying a prompt
[mergetool]
prompt = false
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[commit]
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[commit]
[credential]
[init]
defaultBranch = main
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
# Machine-specific / private git config (work email overrides, per-host
# safe.directory entries, and other machine-local settings) lives here,
# untracked. A missing file is silently ignored, so this is safe everywhere.
[include]
path = ~/.gitconfig.local