-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdot_gitconfig
51 lines (51 loc) · 1.21 KB
/
dot_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
[color]
ui = true
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
sshCommand = ssh -F ~/.ssh/config
pager = diff-so-fancy || less | less --tabs=4 -RFX
editor = nvim
excludesfile = ~/.gitignore_global
symlinks = true
[credential "https://*github*"]
helper = !gh auth git-credential
[user]
name = Ray Jameson
email = [email protected]
signingKey = 04CF04D66633E24A
[difftool "nvimdiff"]
cmd = "nvim -Rd \"$LOCAL\" \"$REMOTE\""
[difftool]
prompt = false
[diff]
tool = nvimdiff
[mergetool "nvimdiff"]
cmd = "nvim +DiffviewOpen"
[mergetool]
prompt = true
[merge]
tool = nvimdiff
[commit]
gpgSign = true
verbose = true
[pull]
rebase = true
[fetch]
prune = true
[init]
defaultBranch = main
[alias]
clone-all = clone --recurse-submodules
pull-all = !git pull --recurse-submodules --rebase && git submodule foreach --recursive git pull --rebase
append = !git add -u && git commit --amend --no-edit && git push --force-with-lease
[includeIf "gitdir:~/qiwi_github/"]
path = ~/.gitconfig_work
[interactive]
diffFilter = diff-so-fancy --patch
[rebase]
updateRefs = true